How to share a location
The HERE Deeplinking API allows sharing a location as an exact point on the map, both with and without a custom title.
Share a location on the map
To share a location, specify the latitude and longitude. You can also specify such optional parameters as zoom level or map type or add a pin to this location.
- LATITUDE, LONGITUDE: The geocoordinates of this location, in decimal degrees.
- p - Display Pin: Specifies if a pin should be shown on the map of a shared location. The valid values are yes and no. Defaults to yes when omitted. This parameter is optional.
https://share.here.com/l/{LATITUDE,LONGITUDE}https://share.here.com/l/{LATITUDE,LONGITUDE}?p={PIN}&z={ZOOM}&t={MAPTYPE}Examples:
https://share.here.com/l/51.8772465,14.3453293?z=13&p=yeshttps://share.here.com/l/51.8772465,14.3453293?z=13&t=traffic&p=noShare a location on the map with a custom title
To share a location with a custom title, specify the latitude, longitude, and a title. You can also specify such optional parameters as zoom level or map type.
- LATITUDE, LONGITUDE: The geocoordinates of this location, in decimal degrees.
- TITLE: Custom title that appears in a bubble at the specified location. The title must be URL-encoded.
https://share.here.com/l/{LATITUDE,LONGITUDE,TITLE}https://share.here.com/l/{LATITUDE,LONGITUDE,TITLE}?&z={ZOOM}&t={MAPTYPE}Examples:
https://share.here.com/l/52.5308599,13.3866211,Invalidenstra%C3%9Fe%20116,10115%20Berlin?z=15https://share.here.com/l/51.8772465,14.3453293,Lets%20meet%20here?z=10Updated this month