Questions tagged [tomtom]

TomTom's public API's for online maps, traffic, routing and search, as well as the per-operating system SDKs. Usage is free up to a daily limit.

TomTom's API and SDK products

Github | Twitter

Get a head-start on your app success story! As the industry leader in map and traffic services, TomTom’s convenient SDKs and APIs save developers time and money, putting your app on the market faster. From calculating the most efficient route, to displaying and tracking users you can do it all with our highly customizable maps. Whether you’re trying to build the next killer app in mobility, gaming, social media or more, TomTom puts developers on the map for business success!

Request a free API key at the API of your choice below.

API Products

Online Maps
Online Search
Online Route
Online Traffic

SDK Products

Maps SDK Web
Maps SDK iOS
Maps SDK Android

91 questions
2
votes
1 answer

TomTom MapKit + Leaflet displayroute Marker

Hey guys I got a problem currently I am using the tomtom api with leaflet to generate a route on a map from Point A to Point B. Now this is working perfectly, the problem is I havent found a way to interact with the Markers automaticly generated…
stackg91
  • 584
  • 7
  • 25
2
votes
2 answers

Generating a .ov2 file with Java

I am trying to figure out how to create a .ov2 file to add POI data to a TomTom GPS device. The format of the data needs to be as follow: An OV2 file consists of POI records. Each record has the following data format. 1 BYTE, char, POI status…
kei23th
  • 283
  • 2
  • 6
  • 14
1
vote
1 answer

Using polyline in Tomtom Map API

I have a problem in my code where I can't create the route for the final markup. Today my code only marks the final address through the Tomtom API, but I am not able to make the trajectory between the points. I have no idea how to achieve this in…
1
vote
1 answer

Promises and Axios request still returns 429 despite setTimeout

I've been having a problem with the Reverse Geocode API provided by TomTom where I get 429 responses back, because I am mapping over 72 latitude and longitude objects to the API. So I decided tried to make a function which would wait 5 seconds…
Antonio Pavicevac-Ortiz
  • 7,239
  • 17
  • 68
  • 141
1
vote
1 answer

How to solve error on using tomtom mapfit?

According to this guide:https://developer.tomtom.com/blog/build-different/adding-tomtom-maps-django-app-building-front-end-map I'm trying to use the tomtom for my django project and everything is working well except the zoom part where the map…
mehdi aria
  • 15
  • 4
1
vote
1 answer

Creating a heatmap with uneven block sizes / stacked bar chart using Python

I want to create a heatmap in Python that is similar to what is shown on the bottom of this screenshot from TomTom Move: https://d2altcye8lkl9f.cloudfront.net/2021/03/image-1.png (source: https://support.move.tomtom.com/ts-output-route-analysis/) A…
dyrjohn
  • 11
  • 2
1
vote
1 answer

Start TOMTOM navigation using Javascript and Android Intent

I have a web application that needs to open a destination in the native maps/navigation app on the device. On most Android devices this is google maps, and I can simply open a link that will open google maps with the directions to the passed…
Tudor
  • 31
  • 3
1
vote
2 answers

Marker out of canvas TomTom

You can have a look at this IMG to understand quickly the issue: Example IMG This appens when you drag with mouse on the map. Thanks
JPDev
  • 11
  • 2
1
vote
1 answer

Hide and Show Tomtom Map Markers

Adding and showing markers on Tomtom map without using clear() function using this simple logic. Create a boolean variable and change it according to your needs. Buttons will do, just switch the values from true to false or false to true to display.
1
vote
1 answer

How To Migrate from Google Maps to TomTom

I just tried to build a new project about gis applications that can store locations in the mysql database, since the Google map is paid I want to try the free ones, it's just TomTom, I'm just confused about how to convert this code to Tomtom map,…
Nona Viral
  • 11
  • 2
1
vote
1 answer

TomTom tile layer not included in leaflet map

Currently working on an app (map) where I would like to use the Tom Tom tile layers on top of Leaflet. Due to Leaflet's documentation I would like to stick to Leaflet, rather than Tom Tom. I was successful at setting up the map using the Tom Tom…
Malcommand
  • 71
  • 1
  • 6
1
vote
1 answer

Tomtom Maps sdk for android failed to load tile

I'm trying to add TomTom maps to my android application that is built with Kotlin, but it gives me the error Tomtom Maps SDK for android failed to load tile and shows an empty map as shown in the image below : And here are my files and detailed…
Ahmed Wagdi
  • 3,913
  • 10
  • 50
  • 116
1
vote
1 answer

Android - How to trigger standalone navigation applications with multiple way points via intent?

Today I'm using Android Intent in the following format to trigger navigation from my application on standalone navigation applications: Action : "android.intent.action.VIEW" URI : "google.navigation:q=48.605086,2.367014/48.607231,2.356997" Component…
bilgo
  • 137
  • 1
  • 9
1
vote
1 answer

Create clusters with TomTom web SDK

I'm using TomTom to show a map on a website with this simple code: let map = tomtom.L.map('map', { key: 'MY_API_KEY', source: 'vector', basePath: 'public/sdk/tomtom', center: mapCenter, zoom: 4 }); // then retrieving data from…
Luigi Caradonna
  • 1,044
  • 2
  • 12
  • 33
1
vote
1 answer

Gradle error - Failed to resolve adding TomTom Maps SDK in Android Studio

I want to calculate distance between 2 points and show the distance and duration in a textview. For that I am using TomTom's Rounting API. When I am trying to add the dependancy to my project, my gradle is throwing the following error - ERROR:…