Giter VIP home page Giter VIP logo

angular-heremaps's People

Contributors

aanev avatar dverbovyi avatar jzet avatar kasra21 avatar klagoda avatar nakan4u avatar tatarski avatar toastman avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

angular-heremaps's Issues

Publishing project on npm

Greetings,
I was wondering if you could publish the project to npm, so that I can take advantage of the changes I recently suggested and you approved?

Good day,
Dimitar

Calculate coordinates with screen to geo

Hi,
I am curious to know whether there is currently any way to convert event click coordinates (x, y) to map coordinates (latitude and longitude)?

*edit Also would you accept help with writing the wiki page?

Thanks in advance

Feature: geocodeAddress method to HereMapsAPIService

Hi,

would you consider adding geocodeAddress method to the public API of HereMapsAPIService. Something like this:

` function geocodeAddress(platform, params) {
if (!params)
return console.error('Missed required parameters');

    var geocoder = platform.getGeocodingService(),
        deferred = $q.defer(),
        _params = {};
        if (!!params.searchtext) {
            // free text geocode
            _params.searchtext = params.searchtext;
            _params.gen = '8';
        } else {
            // partial address geocode
            !!params.housenumber && (_params.housenumber = params.housenumber);
            !!params.street && (_params.street = params.street);
            !!params.city && (_params.city = params.city);
            !!params.country && (_params.country = params.country);
            _params.gen = '8';
        };

    geocoder.geocode(_params, function (response) {
        deferred.resolve(response)
    }, function (error) {
        deferred.reject(error)
    });
   
    return deferred.promise;
}`

Kind Regards!

directive on marker bubble

Hi,

I would like to used directive eg. myDirect , ng-src in marker bubble.

Could you suggest how can i win on this?

Thanks

Adding new markers dynamic

Hello,
I am trying to make these markers dynamic, but it gets fail every time. please provide me examples where I can add and change markers.
Your response is highly awaited.
Thank you

Instancing from H

Hi,
At a place in my code i want to set the maps view bounds. To do so I'm doing:
var boundingBox = new H.geo.Rect(...);
Is there any way to create such an instance without having to call the heremaps API directly ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.