The GeoPoint Class Stay organized with collections Save and categorize content based on your preferences.
ClassGeoPoint represents a point on the earth's surface represented by latitude and longitude coordinates.
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.