Questions tagged [here-maps-rest]

259 questions
0
votes
1 answer

Reverse Geocoding not showing area properly

I am working with the Reverse Geocoding feature available with the Here maps. The code: var geocoder = platform.getGeocodingService(), reverseGeocodingParameters = { prox: 32.2960,77.1896,150, mode: 'retrieveAddresses', …
NehaK
  • 1
  • 1
0
votes
1 answer

Base map layer for Here XYZ Studio

We would like to use a Here map style to create a base map layer in Studio XYZ and the Studio playground. All of the examples and documentation we have found use mapcreator.tilehub.api.here.com/tilehub/wv_livemap_bc/png/sat/256/ to display a…
D Baugh
  • 13
  • 5
0
votes
1 answer

Overlaying issue in heremap implementation

I am not able to overlay the here map. First time I can pass lat lang and it gets plotted. on the same when I pass different latlang I see old and new plot at the same time. Need to solution for this.
0
votes
0 answers

Load map using MapView very caton

When I load map using Mapview, map can be shown,but when operate the map, it is very caton. it is very smoothly when load map with SupportMapFragment. this is my code: private void initialize() { setContentView(R.layout.activity_main); …
0
votes
1 answer

how i can get the searchText from a form with input search here maps javascript

function geocode(text,platform) { var geocoder = platform.getGeocodingService(), geocodingParameters = { searchText: 'Sidi allal tazi 14052 kenitra', jsonattributes : 1 }; Calling…
0
votes
1 answer

CW: City Information Required for product type::local_conditions' Here Map

I am trying to get information about the weather but when I make a simple post query to api gets that result `https://weather.api.here.com/weather/1.0/report.json?app_id=${appId}&app_code=${appCode}&product=observation&name=${city}` { Type: 'Invalid…
Bartek
  • 3
  • 5
0
votes
1 answer

How to set View Bounds for on HERE map using HERE-sdk of android?

I have used view bounds in google maps before, to display a particular region in the Google maps. Now I have shifted my project to HERE maps. Can anyone help me replicating the same in HERE maps?. Thanks in advance.
0
votes
2 answers

C# Objects to De-serialize JSON response from HERE Maps API

I'm just starting looking at REST API with HERE Maps. I've got some experience of C# / .NET programming, but not very much with accessing REST APIs. I have managed to successfully call the HERE Maps WebService and have retrieved the JSON data, but…
0
votes
1 answer

How to get RouteId for my getroute request?

I have Freemium plan on HERE and I'm using routing REST service. When I request a detailed car route between two way points with a getroute request…
Simon Achmüller
  • 1,096
  • 13
  • 26
0
votes
1 answer

Transaction tracking Here maps

Is there any way that you can access project information (mainly number of Transactions) in Here Maps API? The only way I was able to get that is through browser with logging. What i need is access from code (REST, library or anything similar). I…
0
votes
1 answer

In here maps while testing my api code and app code for places API I am getting 401 despite I have recently generated new API codes

In here maps while testing my api_id and app_code in jsfiddle for places API I am getting 401 unauthorised, despite I have recently generated new API codes. $.ajax({ url: 'https://places.demo.api.here.com/places/v1/categories/places', type:…
طلحة
  • 375
  • 4
  • 8
0
votes
1 answer

How to get Advanced Data Sets for only one gps point

I started exploring HERE maps few days back and I want to get road specify data (tunnel, bridge, overpass, underpass, speed limit) like the one returned using "Fleet Telematics Advanced Data Sets" after using specific layer. I see that this returns…
JAVAPYTHON
  • 111
  • 1
  • 1
  • 5
0
votes
1 answer

Secure HereMaps keys

I am using the HereMaps API to develop mobile applications. More specifically, I am using the REST API and not the Mobile SDK to carry my task. Since I have to embed the App Id and App Code in the request, it makes it insecure as anyone can just…
raiken77
  • 1
  • 1
  • 1
0
votes
1 answer

REST vs Android API

What's the difference in using the android API and the REST API? Are they equivalent? Can I do the same thing in both? What are the limitations of one and the other? I intend to start developing a mobile APP with HERE MAP.
Matheus Saraiva
  • 1,144
  • 1
  • 11
  • 33
0
votes
1 answer

Unable to limit the categories in REST response, even when a location is provide in the 'in' or 'at' clause [HERE Maps Places API]

The Place Categories REST Entrypoint of HERE PLACES API is returning all categories defined in API rather than returning categories present specific to a location. I'm trying to execute a rest call as…