react-component-google-maps
Version:
A React Google Maps Component
27 lines (22 loc) • 400 B
JavaScript
export class Marker {
// get the marker icon
get icon() {
return null;
}
// get the id of the Marker
// must be unique for panning, animation
get id() {
return null;
}
get label() {
return null;
}
// get the position of the marker
get position() {
return null;
}
// get the title of the marker
get title() {
return null;
}
}