Python 2.7 has reached end of supportand will bedeprecatedon January 31, 2026. After deprecation, you won't be able to deploy Python 2.7applications, even if your organization previously used an organization policy tore-enable deployments of legacy runtimes. Your existing Python2.7 applications will continue to run and receive traffic after theirdeprecation date. We recommend thatyoumigrate to the latest supported version of Python.

The GeoPoint Class

ClassGeoPoint represents a point on the earth's surface represented by latitude and longitude coordinates.

This API is supported for first-generation runtimes and can be used whenupgrading to corresponding second-generation runtimes. If you are updating to the App Engine Python 3 runtime, refer to themigration guide to learn about your migration options for legacy bundled services.

GeoPoint is defined in the modulegoogle.appengine.api.search.

Introduction

The GeoPoint class allows you to make map locations searchable. You start by instantiating the GeoPoint class and then pass that object to a specific document field:

fromgoogle.appengine.apiimportsearch...# Construct the GeoPoint classgeopoint=search.GeoPoint(latitude,longitude)fields=[search.TextField(name='name',value=store_name),search.TextField(name='address',value=store_address),# Construct a GeoField passing geopoint as the value of that fieldsearch.GeoField(name='store_location',value=geopoint)]

For more information about performing location-based searches, please seeQueries on geopoint fields.

Constructor

The constructor for classGeoPoint is defined as follows:

GeoPoint(latitude,longitude)

A point on the earth's surface represented by latitude and longitude coordinates.

Arguments

latitude

The angle between the equatorial plan and a line that passes through the GeoPoint, between -90 and 90 degrees.

longitude

The angle east or west from a reference meridian to another meridian that passes through the GeoPoint, between -180 and 180 degrees.

Exceptions

TypeError

Any of the parameters has an invalid type, or an unknown attribute was passed.

ValueError

An invalid value was passed for one of the parameters.

Properties

An instance of classGeoPoint has the following properties:

latitude

An angular distance, in degrees, from the equator. Points located to the south of the equator have negative values, while points located to the north of it have positive values.

longitude

An angular distance, in degrees, from the prime meridian. Points located to the west of the prime meridian have positive values, while points located to the east of it have negative values.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-15 UTC.