Allen Kim

Results 165 comments of Allen Kim

@yortus I agree with @stanleyxu2005 await(function() ...) is better than the native syntax await function()....

FYI, for anyone who is interested in the reverse geocoding, I have some code here, https://github.com/allenhwkim/geocoder/blob/master/src/providers/google.ts#L50. Please feel free copy/paste from this repo. https://github.com/allenhwkim/geocoder

As it is specified here, DirectionsService returns result https://developers.google.com/maps/documentation/javascript/directions However, ng2-map only handles the OK result at the moment. For errors, we need to improve it to handle error result...

Yes I accept PR. About error handling, you can follow normal event handling, or take a look at how map directive handles the error.

I don't think this happens with this module, also I cannot reproduce this on my end. Please include a plunker example so that I see this issue.

MarkerClusterer is not a scope of this module although there are some examples you can find. Please take a look at the following examples and find your solution. https://github.com/allenhwkim/angularjs-google-maps/issues/785 https://ngmap.github.io/#/!custom-marker-clusterer.html...

Please look at this. https://github.com/allenhwkim/angularjs-google-maps#grey-area-in-google-maps

it seems working for me. documentation might be incorrect. Please follow this example, https://ngmap.github.io/#/!places-auto-complete.html `this.getPlace()` `ng-repeat` with `data` might cause an issue

This is the same as, https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete You need to get the data from your scope, not from your parameter.

Yes, we can. PR would be appreciated based on the following solution. http://stackoverflow.com/questions/22127626/can-we-make-custom-overlays-draggable-on-google-maps-v3 https://github.com/allenhwkim/angularjs-google-maps/blob/master/directives/custom-marker.js#L118