The following search services are available as part of the SDK bundled by default –
The Autosuggest API helps users to complete queries faster by adding intelligent search capabilities to your web or mobile app. This API returns a list of results as well as suggested queries as the user types in the search field.
MapmyIndiaAutoSuggest mapmyIndiaAutoSuggest = MapmyIndiaAutoSuggest.builder()
.query(searchText)
.build();
MapmyIndiaAutosuggestManager.newInstance(mapmyIndiaAutoSuggest).call(new OnResponseCallback<AutoSuggestAtlasResponse>() {
@Override
public void onSuccess(AutoSuggestAtlasResponse response) {
//handle response
}
@Override
public void onError(int code, String message) {
//handle Error
}
});
val mapmyIndiaAutoSuggest =MapmyIndiaAutoSuggest.builder()
.query(searchText)
.build()
MapmyIndiaAutosuggestManager.newInstance(mapmyIndiaAutoSuggest).call(object : OnResponseCallback<AutoSuggestAtlasResponse> {
override fun onSuccess(response: AutoSuggestAtlasResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
query(String)
: e.g. Shoes, Coffee, Versace, Gucci, H&M, Adidas, Starbucks, B130 {POI, House Number, keyword, tag}.
setLocation(latitude, longitude)
: e.g. setLocation(28.454,77.435).zoom (double)
: takes the zoom level of the current scope of the map (min: 4, max: 18).tokenizeAddress(boolean)
: provides the different address attributes in a structured object.pod
(string) = it takes in the place type code which helps in restricting the results to certain chosen type.Below mentioned are the codes for the pod- AutoSuggestCriteria.POD_SUB_LOCALITY
- AutoSuggestCriteria.POD_LOCALITY
- AutoSuggestCriteria.POD_CITY
- AutoSuggestCriteria.POD_VILLAGE
- AutoSuggestCriteria.POD_SUB_DISTRICT
- AutoSuggestCriteria.POD_DISTRICT
- AutoSuggestCriteria.POD_STATE
- AutoSuggestCriteria.POD_SUB_SUB_LOCALITY
filter
(string) = This parameter helps you restrict the result either by mentioning a bounded area or to certain eloc (6 digit code to any poi, locality, city, etc.) below mentioned are the various types:filter
= bounds: lat1, lng1; lat2, lng2 (latitude, longitude) {e.g. filter("bounds: 28.598882, 77.212407; 28.467375, 77.353513")filter
= cop: {eloc} (string) {e.g. filter("cop:YMCZ0J")
hyperlocal
(Boolean): This parameter lets the search give results that are hyper-localized to the reference location passed in the location parameter. This means that nearby results are given a higher ranking than results far from the reference location. Highly prominent results will still appear in the search results, however they will be lower in the list of results. This parameter will work ONLY in conjunction with the location parameter.
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit.
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server downtimes.
- 200: Success.
- 204: No matches were found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
suggestedLocations
(ArrayList<ELocation>
): A List of the suggested locationuserAddedLocations
(ArrayList<ELocation>
): List of user added locationssuggestedSearches
(ArrayList<SuggestedSearchAtlas>
): List of suggestion related to your search.
poiId
(String): Place Id of the location 6-char alphanumeric.placeAddress
(String): Address of the location.latitude
(String): Latitude of the location.longitude
(String): longitude of the location.type
(String): type of location POI or Country or CityplaceName
(String): Name of the location.user
(String): Name of the user who add the placeindex
(Integer): the order where this result should be placeddistance
(Double): aerial distance in meters from reference locationaddressTokens
(AddressToken)
houseNumber
(String): house number of the location.houseName
(String): house name of the location.poi
(String): name of the POI (if applicable)street
(String): name of the street. (if applicable)subSubLocality
(String): the sub-sub-locality to which the location belongs. (if applicable)subLocality
(String): the sub-locality to which the location belongs. (if applicable)locality
(String): the locality to which the location belongs. (if applicable)village
(String): the village to which the location belongs. (if applicable)subDistrict
(String): the sub-district to which the location belongs. (if applicable)district
(String): the district to which the location belongs. (if applicable)city
(String): the city to which the location belongs. (if applicable)state
(String): the state to which the location belongs. (if applicable)pincode
(String): the PIN code to which the location belongs. (if applicable)
keyword
(string): what the user typed in.identifier
(string): what did the API use for it to qualify it as a suggested search requestlocation
(string): the name of the location to which the nearby will run in context to.hyperlink
(string): the ready-made link for the nearby API pre-initialized with all default parameters and location with code to search for.
Our Geocoding API converts real addresses into these geographic coordinates (latitude/longitude) to be placed on a map, be it for any street, area, postal code, POI or a house number etc.
MapmyIndiaGeoCoding mapmyIndiaGeoCoding = MapmyIndiaGeoCoding.builder()
.setAddress("Delhi")
.build();
MapmyIndiaGeoCodingManager.newInstance(mapmyIndiaGeoCoding).call(new OnResponseCallback<GeoCodeResponse>() {
@Override
public void onSuccess(GeoCodeResponse response) {
//handle response
}
@Override
public void onError(int code, String message) {
//handle Error
}
});
val mapmyIndiaGeoCoding = MapmyIndiaGeoCoding.builder()
.setAddress("Delhi")
.build()
MapmyIndiaGeoCodingManager.newInstance(mapmyIndiaGeoCoding).call(object : OnResponseCallback<GeoCodeResponse> {
override fun onSuccess(response: GeoCodeResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
setAddress(String)
: address to be geocoded e.g. 237 Okhla industrial estate phase 3 new delhi, delhi 110020.
itemCount(Integer)
: parameter can be set to get maximum number of result items from the API (default: 1).podFilter(String)
This parameter can be used to set admin level restriction. The result will be either the given admin level or equivalent admin or higher in the hierarchy. Below mentioned are the codes for the pod:- GeoCodingCriteria.POD_HOUSE_NUMBER
- GeoCodingCriteria.POD_HOUSE_NAME
- GeoCodingCriteria.POD_POINT_OF_INTEREST
- GeoCodingCriteria.POD_STREET
- GeoCodingCriteria.POD_SUB_SUB_LOCALITY
- GeoCodingCriteria.POD_VILLAGE
- GeoCodingCriteria.POD_SUB_LOCALITY
- GeoCodingCriteria.POD_SUB_DISTRICT
- GeoCodingCriteria.POD_LOCALITY
- GeoCodingCriteria.POD_CITY
- GeoCodingCriteria.POD_DISTRICT
- GeoCodingCriteria.POD_PINCODE
- GeoCodingCriteria.POD_STATE
bias(String)
: This parameter can be used to set Urban or Rural bias. A positive value sets the Urban bias and a negative value sets Rural bias. Below mentioned are the codes for the bias:- GeoCodingCriteria.BIAS_DEFAULT (No bias)
- GeoCodingCriteria.BIAS_RURAL
- GeoCodingCriteria.BIAS_URBAN
bound(String)
: This parameter can be used to set admin boundary, which means geocoding will be done within the given admin. The allowed admin bounds are Sub-District, District, City, State and Pincode. The parameter accepts the admin eLoc as value.
Note: Please note that podFilter & bound parameters are mutually exclusive. They cannot be used together in an API call.
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit.
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server downtimes.
- 200: Success.
- 204: No matches were found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
GeoCodeResponse
(List<GeoCode>
): All the details regarding place.
houseNumber
(String): the houseNumber of the address/locationhouseName
(String): houseName of the address/locationpoi
(string): the point of interest or famous landmark nearby the locationstreet
(string): the street or road of the locationsubsubLocality
(string): the subSubLocality of the locationsubLocality
(string): the subLocality of the locationlocality
(string): the locality of the locationvillage
(string): the village of the locationsubDistrict
(string): the subDistrict of the locationdistrict
(string): the district of the locationcity
(string): the city of the locationstate
(string): the state of the locationpincode
(string): the pincode of the locationformatted
Address(string): the general protocol following addresseloc
(string): eloc of the particular locationlatitude
(double): the latitude for the location.longitude
(double): the longitude for the location.geocodeLevel
(string): the best matched address component.
Reverse Geocoding is a process to give the closest matching address to a provided geographical coordinates (latitude/longitude). MapmyIndia reverse geocoding API provides real addresses along with nearest popular landmark for any such geo-positions on the map.
MapmyIndiaReverseGeoCode mapmyIndiaReverseGeoCode = MapmyIndiaReverseGeoCode.builder()
.setLocation(28,77)
.build();
MapmyIndiaReverseGeoCodeManager.newInstance(mapmyIndiaReverseGeoCode).call(new OnResponseCallback<PlaceResponse>() {
@Override
public void onSuccess(PlaceResponse response) {
//Handle Response
}
@Override
public void onError(int code, String message) {
//Handle Error
}
});
val mapmyIndiaReverseGeoCode = MapmyIndiaReverseGeoCode.builder()
.setLocation(28.0, 77.0)
.build()
MapmyIndiaReverseGeoCodeManager.newInstance(mapmyIndiaReverseGeoCode).call(object : OnResponseCallback<PlaceResponse> {
override fun onSuccess(response: PlaceResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
setLocation(latitude, longitude)
: the latitude and longitude of the location for which the address is required.
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit.
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server downtimes.
- 200: Success.
- 204: No matches were found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
responseCode
(Long): Response codes of the api.version
(String): Version of the Api.places
(List<Places>
): All the details regarding place.
houseNumber
(String): the houseNumber of the address/locationhouseName
(String): houseName of the address/locationpoi
(String): the point of interest or famous landmark nearby the locationpoiDist
(String): distance from nearest POI in metres.street
(String): the street or road of the locationstreetDist
(String): distance from nearest Street in metres.subsubLocality
(String): the subSubLocality of the locationsubLocality
(String): the subLocality of the locationlocality
(String): the locality of the locationvillage
(String): the village of the locationsubDistrict
(String): the subDistrict of the locationdistrict
(String): the district of the locationcity
(String): the city of the locationstate
(String): the state of the locationpincode
(String): the pincode of the locationformatted
Address(String): the general protocol following addresslat
(Double): the latitude for the location.lng
(Double): the longitude for the location.area
(String): the area of the location.
Nearby Places API, enables you to add discovery and search of nearby POIs by searching for a generic keyword used to describe a category of places or via the unique code assigned to that category.
MapmyIndiaNearby mapmyIndiaNearby = MapmyIndiaNearby.builder()
.setLocation(28,77)
.keyword("Parking")
.build();
MapmyIndiaNearbyManager.newInstance(mapmyIndiaNearby).call(new OnResponseCallback<NearbyAtlasResponse>() {
@Override
public void onSuccess(NearbyAtlasResponse response) {
//Handle Response
}
@Override
public void onError(int code, String message) {
//Handle Error
}
});
val mapmyIndiaNearby = MapmyIndiaNearby.builder()
.keyword("Parking")
.setLocation(28.0, 77.0)
.build()
MapmyIndiaNearbyManager.newInstance(mapmyIndiaNearby).call(object : OnResponseCallback<NearbyAtlasResponse> {
override fun onSuccess(response: NearbyAtlasResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
keyword(String)
: performs search on the basis of provided keyword For eg: coffee, EV Charging Station etcsetLocation(latitude, longitude)
:Provide the location around which the search will be performed- setLocation also support eloc e.g.,
setLocation("MMI000")
- setLocation also support eloc e.g.,
-
sort(String)
: provides configured sorting operations for the client on cloud.Below are the available sorts:-
NearbyCriteria.DISTANCE_ASCENDING
-
NearbyCriteria.DISTANCE_DESCENDING will sort the data on distance basis.
-
NearbyCriteria.NAME_ASCENDING
-
NearbyCriteria.NAME_DESCENDING will sort the data on alphabetically basis.
-
-
page (integer)
: provides number of the page to provide results from. -
radius(integer)
: provides the range of distance to search over(default: 1000, min: 500, max: 10000) -
bounds(String)
: Allows the developer to send in map bounds to provide a nearby search within the bounds. {e.g. (bounds("28.56812,77.240519;28.532790,77.290854")) -
userName(String)
: Use to set the user name -
richData(Boolean)
: rich data related to poi -
pod (string)
: it takes in the place type code which helps in restricting the results to certain chosen type. Access to this parameter is controlled from the backend. This parameter if provided will override any values provided inkeywords
request param. Below mentioned are the codes for the pod- NearbyCriteria.POD_SUB_LOCALITY
- NearbyCriteria.POD_LOCALITY
- NearbyCriteria.POD_CITY
- NearbyCriteria.POD_VILLAGE
-
filter(String)
: This parameter helps you get a specific type of EV charging Stationfilter
= model:(string);brandId:(string);plugType:(string)
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit.
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server downtimes.
- 200: Success.
- 204: No matches were found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
suggestedLocations
(ArrayList<NearbyAtlasResult>
): List of nearby places
distance
(integer): provides the distance from the provided location bias in meters.eLoc
(string): Place Id of the location 6-char alphanumeric.email
(string): Email for contact.entryLatitude
(double): latitude of the entrance of the location.entryLongitude
(double): longitude of the entrance of the location.keywords
( [ string ] ): provides an array of matched keywords or codes.landlineNo
(string): Email for contact.latitude
(double): Latitude of the location.longitude
(double): longitude of the location.mobileNo
: Phone number for contact.orderIndex
(integer): the order where this result should be placedplaceAddress
(string): Address of the location.placeName
(string): Name of the location.city
(string): City of the locationstate
(string): State of the locationpincode
(string): Pincode of the locationrichInfo
(Map): To show advance information of locationtype
(string): Type of location POI or Country or City.hourOfOperation
(string): The hours of operation of the POI in a day.addressTokens
(AddressToken)pageInfo
(PageInfo)
houseNumber
(String): house number of the location.houseName
(String): house name of the location.poi
(String): name of the POI (if applicable)street
(String): name of the street. (if applicable)subSubLocality
(String): the sub-sub-locality to which the location belongs. (if applicable)subLocality
(String): the sub-locality to which the location belongs. (if applicable)locality
(String): the locality to which the location belongs. (if applicable)village
(String): the village to which the location belongs. (if applicable)subDistrict
(String): the sub-district to which the location belongs. (if applicable)district
(String): the district to which the location belongs. (if applicable)city
(String): the city to which the location belongs. (if applicable)state
(String): the state to which the location belongs. (if applicable)pincode
(String): the PIN code to which the location belongs. (if applicable)
pageCount
(integer): The number of pages with results.totalHits
(integer): Total number of places in the results.totalPages
(integer): Total number of pages as per page size and no of results.pageSize
(integer): The number of results per page.
MapmyIndia eloc is a simple, standardized and precise pan-India digital address system. Every location has been assigned a unique digital address or an eLoc. The eLoc API can be used to extract the details of a place with the help of its eLoc i.e. a 6 digit code or a place_id.
MapmyIndiaELoc mapmyIndiaELoc = MapmyIndiaELoc.builder()
.setELoc("mmi000")
.build();
MapmyIndiaELocManager.newInstance(mapmyIndiaELoc).call(new OnResponseCallback<PlaceResponse>() {
@Override
public void onSuccess(PlaceResponse response) {
//Handle Response
}
@Override
public void onError(int code, String message) {
//Handle Error
}
});
val mapmyIndiaELoc = MapmyIndiaELoc.builder()
.setELoc("mmi000")
.build()
MapmyIndiaELocManager.newInstance(mapmyIndiaELoc).call(object : Callback<PlaceResponse> {
override fun onSuccess(response: PlaceResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
setEloc(String)
: the id or eLoc of the place whose details are required. The 6-digit alphanumeric
code for any location. (e.g. mmi000).
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit.
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server downtimes.
- 200: Success.
- 204: No matches were found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
places
(List<Place>
): List of nearby places
houseNumber
(string): The house number of the location.houseName
(string): The name of the location.poi
(string): The name of the POI if the location is a place of interest (POI).street
(string): The name of the street of the location.subSubLocality
(string): The name of the sub-sub-locality where the location exists.subLocality
(string): The name of the sub-locality where the location exists.locality
(string): The name of the locality where the location exists.village
(string): The name of the village if the location exists in a village.district
(string): The name of the district in which the location exists.subDistrict
(string): The name of the sub-district in which the location exists.city
(string): The name of the city in which the location exists.state
(string): The name of the state in which the location exists.pincode
(string): The pin code of the location area.latitude
(double): The latitude of the location.longitude
(double): The longitude of the location.placeId
(string): The eLoc or placeId assigned for a place in map database. An eLoc is the digital identity for an address or business to identify its unique location. For more information on eLoc, click here.type
(string): defines the type of location matched (HOUSE_NUMBER, HOUSE_NAME, POI, STREET, SUB_LOCALITY, LOCALITY, VILLAGE, DISTRICT, SUB_DISTRICT, CITY, STATE, SUBSUBLOCALITY, PINCODE)
MapmyIndia Place Details is a simple, standardized and precise pan-India digital address system. Every location has been assigned a unique digital address or an eLoc. The eLoc API can be used to extract the details of a place with the help of its eLoc i.e. a 6 digit code or a place_id.
MapmyIndiaPlaceDetail mapmyIndiaPlaceDetail = MapmyIndiaPlaceDetail.builder()
.eLoc("mmi000")
.build();
MapmyIndiaPlaceDetailManager.newInstance(mapmyIndiaPlaceDetail).call(new OnResponseCallback<PlaceDetailResponse>() {
@Override
public void onSuccess(PlaceDetailResponse response) {
//Handle Response
}
@Override
public void onError(int code, String message) {
//Handle Error
}
});
val mapmyIndiaPlaceDetail = MapmyIndiaPlaceDetail.builder()
.eLoc("mmi000")
.build()
MapmyIndiaPlaceDetailManager.newInstance(mapmyIndiaPlaceDetail).call(object : OnResponseCallback<PlaceDetailResponse> {
override fun onSuccess(response: PlaceDetailResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
eLoc(String)
: the id or eLoc of the place whose details are required. The 6-digit alphanumeric
code for any location. (e.g. mmi000).
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit.
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server downtimes.
- 200: Success.
- 204: No matches were found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
Eloc
(string) : 6 characters alphanumeric unique identifierlatitude
(double): The latitude of the location.longitude
(double): The longitude of the location.
Note: Not all response parameters are available by default. These parameters are restricted and available as per the discussed use case. For details, please contact MapmyIndia API support.
With POI Along the Route API user will be able to get the details of POIs of a particular category along his set route. The main focus of this API is to provide convenience to the user and help him in locating the place of his interest on his set route.
MapmyIndiaPOIAlongRoute poiAlongRoute = MapmyIndiaPOIAlongRoute.builder()
.category(catCode)
.path(path)
.build();
MapmyIndiaPOIAlongRouteManager.newInstance(poiAlongRoute).call(new OnResponseCallback<POIAlongRouteResponse>() {
@Override
public void onSuccess(POIAlongRouteResponse response) {
//Handle Response
}
@Override
public void onError(int code, String message) {
//Handle Error
}
});
val poiAlongRoute = MapmyIndiaPOIAlongRoute.builder()
.category(catCode)
.path(path)
.build()
MapmyIndiaPOIAlongRouteManager.newInstance(poiAlongRoute).call(object : OnResponseCallback<POIAlongRouteResponse> {
override fun onSuccess(response: POIAlongRouteResponse) {
//handle response
}
override fun onError(code: Int, message: String) {
//handle Error
}
})
category(String)
: The POI category code to be searched. Only one category input supported.path(String)
: This parameter takes the encoded route along which POIs to be searched.
buffer(Integer)
: Buffer of the road. Minimum value is25
, maximum is1000
and default is25
.geometries(String)
: Type of geometry encoding.Below are the available geometries:- POICriteria.GEOMETRY_POLYLINE5
- POICriteria.GEOMETRY_POLYLINE6 (Default)
- POICriteria.GEOMETRY_BASE64
page(Integer)
: Used for pagination. By default, a request returns maximum10
results and to get the next10
or so on pass the page value accordingly. Default is 1.sort(Boolean)
: Gets the sorted POIs along route.
- 200: To denote a successful API call.
- 204: To denote the API was a success but no results were found.
- 400: Bad Request, User made an error while creating a valid request.
- 401: Unauthorized, Developer’s key is not allowed to send a request with restricted parameters.
- 403: Forbidden, Developer’s key has hit its daily/hourly limit. Server-Side Issues:
- 500: Internal Server Error, the request caused an error in our systems.
- 503: Service Unavailable, during our maintenance break or server down-times.
- 200: Success.
- 204: No matches we’re found for the provided query.
- 400: Something’s just not right with the request.
- 401: Access Denied.
- 403: Services for this key has been suspended due to daily/hourly transactions limit.
- 500: Something went wrong.
- 503: Maintenance Break.
suggestedPOIs
(List <SuggestedPOI
>): List of Suggested POI location
distance
(Integer): distance of the POI.placeId
(String): eLoc of the POI.poi
(String): Name of the POI.subSubLocality
(String): Sub sub locality of the POI.subLocality
(String): Sub locality of the POI.locality
(String): Locality of the POI.city
(String): City of the POI.subDistrict
(String): Sub district of the POI.district
(String): District of the POI.state
(String): State of the POI.popularName
(String): Popular name of the POI.address
(String): Address of the POI.telNo
(String): Telephone number of the POI.email
(String): Email of the POI.website
(String): Website of the POI.longitude
(Double): Longitude of the POI.latitude
(Double): Latitude of the POI.eLng
(Double): Entry longitude of the POI.eLat
(Double): Entry latitude of the POI.brandCode
(String): Brand id of the POI.
For any queries and support, please contact:
Email us at [email protected]
Stack Overflow Ask a question under the mapmyindia-api
Support Need support? contact us!
Blog Read about the latest updates & customer stories
© Copyright 2022. CE Info Systems Ltd. All Rights Reserved. | Terms & Conditions.