Current Path : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/location/osm/test/stubs/ |
Current File : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/location/osm/test/stubs/markerstub.js |
export default class MarkerStub { map = null; lat = 0; lon = 0; draggable = false; addTo(map) { this.map = map; } remove() { this.map = null; } setLatLng(latLng) { this.lat = latLng[0]; this.lon = latLng[1]; } }