Your IP : 172.70.80.238


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/js/location/osm/test/stubs/
Upload File :
Current File : /var/www/element/data/www/revenuestory.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];
	}
}