Alternatives to HERE Geocoding logo

Alternatives to HERE Geocoding

Google Maps, Leaflet, Mapbox, OpenLayers, and OpenStreetMap are the most popular alternatives and competitors to HERE Geocoding.
6
16
+ 1
0

What is HERE Geocoding and what are its top alternatives?

It provides comprehensive coverage in 196 countries and a number of territories with high-precision mapping of geo-coordinates and addresses. It enables the optimization and processing of high volumes of data, and enables the multi-reverse geocoding of hundreds of coordinates in one request or batch geocoding of hundreds of addresses through single file uploads.
HERE Geocoding is a tool in the Mapping APIs category of a tech stack.

Top Alternatives to HERE Geocoding

  • 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. ...

  • 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. ...

  • Mapbox
    Mapbox

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

  • OpenLayers
    OpenLayers

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

  • 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. ...

  • 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 Geocoding alternatives & related posts

Google Maps logo

Google Maps

40.5K
28.1K
566
Build highly customisable maps with your own content and imagery
40.5K
28.1K
+ 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 · 472.8K 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
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
    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.2K 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
      OpenLayers logo

      OpenLayers

      570
      459
      57
      A high-performance, feature-packed library for all your mapping needs
      570
      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

        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 · 472.8K 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
          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.2K 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