Using Following Pipelince Geo_point feild is missing how to add I want to cordinate with map using geopoint

Using Following Pipelince Geo_point feild is missing how to add I want to cordinate with map using geopoint

PUT _ingest/pipeline/geoip
{
“description” : “Add geoip info”,
“processors” : [
{
“geoip” : {
“field” : “ip”,
“target_field” : “geo”,
“database_file” : “GeoLite2-Country.mmdb”
}
}
]
}
PUT my-index-00001/_doc/my_id?pipeline=geoip
{
“ip”: “8.8.8.8”
}
GET my-index-00001/_doc/my_id