geolocation-8.x-3.x-dev/modules/geolocation_yandex/js/MapFeature/YandexMapFeature.js
modules/geolocation_yandex/js/MapFeature/YandexMapFeature.js
import { GeolocationMapFeature } from "../../../../js/MapFeature/GeolocationMapFeature.js";
/**
* @prop {Yandex} map
*/
export class YandexMapFeature extends GeolocationMapFeature {
/**
* @param {YandexMapMarker} marker
* Marker.
*/
onMarkerAdded(marker) {
super.onMarkerAdded(marker);
}
/**
* @param {YandexMapMarker} marker
* Marker.
*/
onMarkerClicked(marker) {
super.onMarkerClicked(marker);
}
/**
* @param {YandexMapMarker} marker
* Marker.
*/
onMarkerRemove(marker) {
super.onMarkerRemove(marker);
}
/**
* @param {YandexMapMarker} marker
* Marker.
*/
onMarkerUpdated(marker) {
super.onMarkerUpdated(marker);
}
}
