ionic-team / ionic-native-google-maps

Google maps plugin for Ionic Native
Other
221 stars 125 forks source link

how to delete a marker with ID #114

Closed JeanRoldanDev closed 5 years ago

JeanRoldanDev commented 6 years ago

I want to delete a bookmark and I only find the option to clean the map and reload the entire array

wf9a5m75 commented 6 years ago
marker.remove()

You need to hold marker instance by yourself.

wf9a5m75 commented 6 years ago

ping

JeanRoldanDev commented 5 years ago

I can not find a way to do it, some example with typescrip, please

wf9a5m75 commented 5 years ago

I prefer the person who do your best before asking.

let marker: Marker = this.map.addMarkerSync({
      title: 'Ionic',
      icon: 'blue',
      animation: 'DROP',
      position: {
        lat: 43.0741904,
        lng: -89.3809802
      }
    });

marker.remove();