Your IP : 3.141.25.30


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