tabris-plugin-maps icon indicating copy to clipboard operation
tabris-plugin-maps copied to clipboard

Maps plugin for Tabris.js

Results 9 tabris-plugin-maps issues
Sort by recently updated
recently updated
newest added

Hi, I would like to add custom icons to markers on iOS but I cannot make it work. I've tried getting the path with tabris,app.getResourceLocation(filepath) and manually with tabris.fs.filesDir, but...

bug
iOS

Hello, Is marker clustering on the TODO list? It's probably a must have for any project with a large number of markers. Thanks!

Is there a way to show routing or directions on the map?

It would be great to have an API to draw on the map. For starters I can envision three shapes: - [ ] **Lines**. A constructor could look like: ```...

### Problem description The app crashes when calling map methods before the map has been added to the widget tree. logcat output: ``` 11-28 12:40:29.488 4951 4951 E FragmentManager: No...

bug
Android

If i have two latlongs can I see the Directions between them ?

When _showMyLocation_ is set to `true` and the map widget gets disposed, location service indicators continue to show in the system UI until the application is closed.

bug
iOS

Example: ```js let navigation = new tabris.NavigationView({left: 0, top: 0, right: 0, bottom: 0}).appendTo(tabris.ui.contentView); new tabris.Page({title: 'Page 1'}).appendTo(navigation); setTimeout(() => { let page = new tabris.Page({title: 'Map'}).appendTo(navigation); new esmaps.Map({ left:...

bug
iOS

Currently, `marker.dispose()` removes the marker from the `map.getMarkers()` array. Something like: ```js map.getMarkers().forEach(marker => marker.dispose()); ``` ... would not work, since the array would be modified by `marker.dispose()`. In this...

enhancement