ionic-team / ionic-native-google-maps

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

Documentation update needed? #259

Closed services4smb closed 4 years ago

services4smb commented 4 years ago

I'm submitting a ... (check one with "x")

Ref. [https://github.com/ionic-team/ionic-native-google-maps/tree/master/documents/markeroptions]

I have been trying to position my marker icon using the 'anchor' option, but following the documentation nothing happens. Moving 'anchor' inside 'icon: {}' it works as expected.

let options: MarkerOptions = {
  icon: {
    url: 'assets/marker_icon.png',
    size: {
      width: 32,
      height: 24
    },
    anchor: [16, 32]
  },

  title: 'Hello World'
... etc.
}