Skip to content

Releases: dverbovyi/angular-heremaps

add support map language tiles

19 Apr 21:06
Compare
Choose a tag to compare

dist.zip

Added

  • mapTileConfig

Example: Config-provider

Thanks, @Nakan4u for the pull request

add getBoundsReactFromPoints, change in findLocationById

05 Aug 12:12
Compare
Choose a tag to compare

Added:

  • getBoundsReactFromPoints

Example:

function setViewBoundsByPoints(heremaps) {
    var topLeftPoint = { lng: 55.1021576, lat: 25.064732 };
    var bottomRightPoint = { lng: 54.1021576, lat: 24.064732 };
    
    var bounds = heremaps.getBoundsReactFromPoints(topLeftPoint, bottomRightPoint);
    
    heremaps.setViewBounds(bounds);
}

$scope.onMapready = function(heremaps) {
 setViewBoundsByPoints(heremaps);
}

Changed in API:

  • findLocationById now returns json (PR: #14)

Add geocodeAutocomplete and findLocationById methods

17 Jul 08:23
Compare
Choose a tag to compare

Added geocodeAutocomplete and findLocationById methods to angular-heremaps public API

thanks @aanev for the PR

integrate geocodeAddress feature

06 Jul 15:14
Compare
Choose a tag to compare

thanks @aanev for the PR