Results 3 comments of Tunca

@Han-sangwoo , Did you fix the issue? If yes, please share with us. I got same error.

I fixed this issue, updating msp430 is enough.

``` $scope.$on('leafletDirectiveMarker.leaflet_map.dragend', function(e, args){ var updatedLat = '', updatedLng = ''; if( args.model.lat.toString().length > 9){ updatedLat = args.model.lat.toString().substring(0,9); } else { updatedLat = args.model.lat.toString(); } if( args.model.lng.toString().length > 9){ updatedLng...