Alternatives to Here Maps logo

Alternatives to Here Maps

Mapbox, Google Maps, OpenStreetMap, Leaflet, and OpenLayers are the most popular alternatives and competitors to Here Maps.
65
88
+ 1
0

What is Here Maps and what are its top alternatives?

Here Maps is a versatile mapping platform that offers features such as detailed maps, live traffic information, route planning, and location-based services. Users can access maps online or offline, receive turn-by-turn navigation guidance, and search for places of interest. However, some limitations include occasional inaccuracies in mapping data and lack of real-time updates in certain regions.

  1. Google Maps: Google Maps is a widely-used mapping service that offers comprehensive maps, real-time traffic updates, street view imagery, and public transportation information. Pros include accurate data and extensive coverage, while cons may include privacy concerns and data collection practices compared to Here Maps.

  2. Mapbox: Mapbox provides customizable maps, navigation SDKs, and location-based services for developers and businesses. Key features include design flexibility, data visualization options, and support for real-time updates. However, Mapbox may require technical expertise to implement compared to Here Maps.

  3. OpenStreetMap: OpenStreetMap is a collaborative mapping project that offers free and editable map data to users worldwide. Pros include community-driven updates and global coverage, while cons may include potential data inconsistencies and limited official support compared to Here Maps.

  4. Waze: Waze is a navigation app that focuses on crowdsourced traffic updates, road closures, and real-time incident reports. Key features include social interaction, route optimization based on user input, and community-driven alerts. However, Waze may not offer as detailed map data or offline functionality as Here Maps.

  5. Apple Maps: Apple Maps is Apple's mapping service that provides detailed maps, 3D views, and integration with other Apple devices. Pros include seamless integration with iOS devices and privacy-focused features, while cons may include occasional inaccuracies in mapping data compared to Here Maps.

  6. Bing Maps: Bing Maps offers mapping services with aerial imagery, street maps, and route planning capabilities. Key features include customizable map styles, offline mapping support, and integration with Microsoft services. However, Bing Maps may not offer as extensive coverage or detailed data as Here Maps.

  7. Sygic: Sygic is a GPS navigation app that provides offline maps, real-time traffic updates, and voice-guided navigation. Pros include offline functionality and premium features, while cons may include limited coverage in certain regions compared to Here Maps.

  8. TomTom Maps: TomTom Maps offers mapping solutions for developers, consumers, and businesses with features such as route planning, traffic information, and geocoding services. Key features include up-to-date mapping data, customizable APIs, and support for various platforms. However, TomTom Maps may not offer as extensive coverage or detailed information as Here Maps.

  9. Komoot: Komoot is a route planning and navigation app designed for outdoor activities such as hiking, cycling, and mountain biking. Pros include specialized routing options for outdoor enthusiasts, offline maps, and points of interest recommendations. However, Komoot may not provide as comprehensive mapping data or urban navigation as Here Maps.

  10. MapQuest: MapQuest is a mapping service that offers driving directions, local search, and route planning tools. Key features include customizable maps, traffic updates, and integration with other platforms. However, MapQuest may not provide as detailed mapping data or advanced features as Here Maps.

Top Alternatives to Here Maps

  • Mapbox
    Mapbox

    We make it possible to pin travel spots on Pinterest, find restaurants on Foursquare, and visualize data on GitHub. ...

  • Google Maps
    Google Maps

    Create rich applications and stunning visualisations of your data, leveraging the comprehensiveness, accuracy, and usability of Google Maps and a modern web platform that scales as you grow. ...

  • OpenStreetMap
    OpenStreetMap

    OpenStreetMap is built by a community of mappers that contribute and maintain data about roads, trails, cafés, railway stations, and much more, all over the world. ...

  • Leaflet
    Leaflet

    Leaflet is an open source JavaScript library for mobile-friendly interactive maps. It is developed by Vladimir Agafonkin of MapBox with a team of dedicated contributors. Weighing just about 30 KB of gzipped JS code, it has all the features most developers ever need for online maps. ...

  • OpenLayers
    OpenLayers

    An opensource javascript library to load, display and render maps from multiple sources on web pages. ...

  • ArcGIS
    ArcGIS

    It is a geographic information system for working with maps and geographic information. It is used for creating and using maps, compiling geographic data, analyzing mapped information, sharing and much more. ...

  • Java Persistence API
    Java Persistence API

    It is a Java application programming interface specification that describes the management of relational data in applications using Java Platform, Standard Edition and Java Platform, Enterprise Edition.It provides a POJO persistence model for object-relational mapping. ...

  • Google Places API
    Google Places API

    You can provide users data on location names, addresses, ratings, reviews, contact information, and atmosphere. Local guides and users submit tens of millions of updates every day, so you can count on accurate, reliable information. ...

Here Maps alternatives & related posts

Mapbox logo

Mapbox

704
929
112
Design and publish beautiful maps
704
929
+ 1
112
PROS OF MAPBOX
  • 28
    Best mapping service outside of Google Maps
  • 22
    OpenStreetMap
  • 15
    Beautifully vectorable
  • 11
    Fluid user experience
  • 8
    Extensible
  • 7
    React/ RNative integration
  • 5
    3D Layers
  • 4
    Low Level API
  • 4
    Affordable
  • 3
    Great customer support
  • 3
    Custom themes
  • 2
    High data volume rendering
CONS OF MAPBOX
    Be the first to leave a con

    related Mapbox posts

    Stephen Gheysens
    Lead Solutions Engineer at Inscribe · | 7 upvotes · 407.5K views

    Google Maps lets "property owners and their authorized representatives" upload indoor maps, but this appears to lack navigation ("wayfinding").

    MappedIn is a platform and has SDKs for building indoor mapping experiences (https://www.mappedin.com/) and ESRI ArcGIS also offers some indoor mapping tools (https://www.esri.com/en-us/arcgis/indoor-gis/overview). Finally, there used to be a company called LocusLabs that is now a part of Atrius and they were often integrated into airlines' apps to provide airport maps with wayfinding (https://atrius.com/solutions/personal-experiences/personal-wayfinder/).

    I previously worked at Mapbox and while I believe that it's a great platform for building map-based experiences, they don't have any simple solutions for indoor wayfinding. If I were doing this for fun as a side-project and prioritized saving money over saving time, here is what I would do:

    • Create a graph-based dataset representing the walking paths around your university, where nodes/vertexes represent the intersections of paths, and edges represent paths (literally paths outside, hallways, short path segments that represent entering rooms). You could store this in a hosted graph-based database like Neo4j, Amazon Neptune , or Azure Cosmos DB (with its Gremlin API) and use built-in "shortest path" queries, or deploy a PostgreSQL service with pgRouting.

    • Add two properties to each edge: one property for the distance between its nodes (libraries like @turf/helpers will have a distance function if you have the latitude & longitude of each node), and another property estimating the walking time (based on the distance). Once you have these values saved in a graph-based format, you should be able to easily query and find the data representation of paths between two points.

    • At this point, you'd have the routing problem solved and it would come down to building a UI. Mapbox arguably leads the industry in developer tools for custom map experiences. You could convert your nodes/edges to GeoJSON, then either upload to Mapbox and create a Tileset to visualize the paths, or add the GeoJSON to the map on the fly.

    *You might be able to use open source routing tools like OSRM (https://github.com/Project-OSRM/osrm-backend/issues/6257) or Graphhopper (instead of a custom graph database implementation), but it would likely be more involved to maintain these services.

    See more

    Which will give a better map (better view, markers options, info window) in an Android OS app?

    Leaflet with Mapbox or Leaflet with OpenStreetMap?

    See more
    Google Maps logo

    Google Maps

    40.5K
    28.2K
    566
    Build highly customisable maps with your own content and imagery
    40.5K
    28.2K
    + 1
    566
    PROS OF GOOGLE MAPS
    • 253
      Free
    • 136
      Address input through maps api
    • 81
      Sharable Directions
    • 47
      Google Earth
    • 46
      Unique
    • 3
      Custom maps designing
    CONS OF GOOGLE MAPS
    • 4
      Google Attributions and logo
    • 1
      Only map allowed alongside google place autocomplete

    related Google Maps posts

    A huge component of our product relies on gathering public data about locations of interest. Google Places API gives us that ability in the most efficient way. Since we are primarily going to be using as google data as a source of information for our MVP, we might as well start integrating the Google Places API in our system. We have worked with Google Maps in the past and we might take some inspiration from our previous projects onto this one.

    See more
    Adam Abdelmoula
    CPO at Split Mobile Software · | 5 upvotes · 473.2K views

    We need some advice about the map services provider. We are a mobility app that just launched 5 months ago in Tunisia offering P2P carpooling. We are currently using Google Maps API for maps (Places API, Geocoding API, Directions API & Distance Matrix API). Thus, we received expensive bills from Google Cloud following the number of requests we are using. We are looking forward to reduce the number of requests in general because we can't afford these large bills at this stage, knowing that they are going to increase proportionally to the active users of the app. We tried to optimize multiple times but it isn't enough. We are searching for optimization advice or ideas on how we use the APIs, or other map providers (like OpenStreetMap or similar) that offers free or cheaper options than Google Maps, without lacking quality of information (we are in Tunisia and we have to choose options that have enough data about Tunisia). Thanks!

    See more
    OpenStreetMap logo

    OpenStreetMap

    249
    467
    56
    The free editable map of the whole world
    249
    467
    + 1
    56
    PROS OF OPENSTREETMAP
    • 22
      Simple
    • 17
      Free
    • 9
      Open-Source
    • 7
      Open-Data
    • 1
      React/ RNative integration
    CONS OF OPENSTREETMAP
      Be the first to leave a con

      related OpenStreetMap posts

      Adam Abdelmoula
      CPO at Split Mobile Software · | 5 upvotes · 473.2K views

      We need some advice about the map services provider. We are a mobility app that just launched 5 months ago in Tunisia offering P2P carpooling. We are currently using Google Maps API for maps (Places API, Geocoding API, Directions API & Distance Matrix API). Thus, we received expensive bills from Google Cloud following the number of requests we are using. We are looking forward to reduce the number of requests in general because we can't afford these large bills at this stage, knowing that they are going to increase proportionally to the active users of the app. We tried to optimize multiple times but it isn't enough. We are searching for optimization advice or ideas on how we use the APIs, or other map providers (like OpenStreetMap or similar) that offers free or cheaper options than Google Maps, without lacking quality of information (we are in Tunisia and we have to choose options that have enough data about Tunisia). Thanks!

      See more

      Which will give a better map (better view, markers options, info window) in an Android OS app?

      Leaflet with Mapbox or Leaflet with OpenStreetMap?

      See more
      Leaflet logo

      Leaflet

      1.4K
      1.1K
      107
      JavaScript library for mobile-friendly interactive maps
      1.4K
      1.1K
      + 1
      107
      PROS OF LEAFLET
      • 32
        Light weight
      • 28
        Free
      • 12
        Evolutive via plugins
      • 10
        OpenStreetMap
      • 9
        Strong community
      • 7
        Choice of map providers
      • 6
        Easy API
      • 3
        Alternative to Google Maps
      CONS OF LEAFLET
        Be the first to leave a con

        related Leaflet posts

        Which will give a better map (better view, markers options, info window) in an Android OS app?

        Leaflet with Mapbox or Leaflet with OpenStreetMap?

        See more
        OpenLayers logo

        OpenLayers

        571
        459
        57
        A high-performance, feature-packed library for all your mapping needs
        571
        459
        + 1
        57
        PROS OF OPENLAYERS
        • 15
          Flexibility
        • 11
          Maturity
        • 8
          Open Source
        • 7
          Incredibly comprehensive, excellent support
        • 4
          Extensible
        • 4
          Strong community
        • 4
          Choice of map providers
        • 3
          Low Level API
        • 1
          OpenStreetMap
        CONS OF OPENLAYERS
          Be the first to leave a con

          related OpenLayers posts

          ArcGIS logo

          ArcGIS

          133
          185
          20
          A geographic information system for working with maps
          133
          185
          + 1
          20
          PROS OF ARCGIS
          • 7
            Reponsive
          • 4
            A lot of widgets
          • 4
            Data driven vizualisation
          • 2
            Easy tà learn
          • 2
            3D
          • 1
            Easy API
          CONS OF ARCGIS
            Be the first to leave a con

            related ArcGIS posts

            Stephen Gheysens
            Lead Solutions Engineer at Inscribe · | 7 upvotes · 407.5K views

            Google Maps lets "property owners and their authorized representatives" upload indoor maps, but this appears to lack navigation ("wayfinding").

            MappedIn is a platform and has SDKs for building indoor mapping experiences (https://www.mappedin.com/) and ESRI ArcGIS also offers some indoor mapping tools (https://www.esri.com/en-us/arcgis/indoor-gis/overview). Finally, there used to be a company called LocusLabs that is now a part of Atrius and they were often integrated into airlines' apps to provide airport maps with wayfinding (https://atrius.com/solutions/personal-experiences/personal-wayfinder/).

            I previously worked at Mapbox and while I believe that it's a great platform for building map-based experiences, they don't have any simple solutions for indoor wayfinding. If I were doing this for fun as a side-project and prioritized saving money over saving time, here is what I would do:

            • Create a graph-based dataset representing the walking paths around your university, where nodes/vertexes represent the intersections of paths, and edges represent paths (literally paths outside, hallways, short path segments that represent entering rooms). You could store this in a hosted graph-based database like Neo4j, Amazon Neptune , or Azure Cosmos DB (with its Gremlin API) and use built-in "shortest path" queries, or deploy a PostgreSQL service with pgRouting.

            • Add two properties to each edge: one property for the distance between its nodes (libraries like @turf/helpers will have a distance function if you have the latitude & longitude of each node), and another property estimating the walking time (based on the distance). Once you have these values saved in a graph-based format, you should be able to easily query and find the data representation of paths between two points.

            • At this point, you'd have the routing problem solved and it would come down to building a UI. Mapbox arguably leads the industry in developer tools for custom map experiences. You could convert your nodes/edges to GeoJSON, then either upload to Mapbox and create a Tileset to visualize the paths, or add the GeoJSON to the map on the fly.

            *You might be able to use open source routing tools like OSRM (https://github.com/Project-OSRM/osrm-backend/issues/6257) or Graphhopper (instead of a custom graph database implementation), but it would likely be more involved to maintain these services.

            See more
            Java Persistence API logo

            Java Persistence API

            124
            96
            0
            A Java application programming interface specification
            124
            96
            + 1
            0
            PROS OF JAVA PERSISTENCE API
              Be the first to leave a pro
              CONS OF JAVA PERSISTENCE API
                Be the first to leave a con

                related Java Persistence API posts

                Google Places API logo

                Google Places API

                73
                101
                0
                Help users discover the world with rich details for points of interest
                73
                101
                + 1
                0
                PROS OF GOOGLE PLACES API
                  Be the first to leave a pro
                  CONS OF GOOGLE PLACES API
                    Be the first to leave a con

                    related Google Places API posts

                    A huge component of our product relies on gathering public data about locations of interest. Google Places API gives us that ability in the most efficient way. Since we are primarily going to be using as google data as a source of information for our MVP, we might as well start integrating the Google Places API in our system. We have worked with Google Maps in the past and we might take some inspiration from our previous projects onto this one.

                    See more