Your IP : 3.144.43.235


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/mapstub.js

export default class MapStub
{
	hasLayerValue = true;
	zoom = 0;
	lat = 0;
	lon = 0;

	hasLayer()
	{
		return this.hasLayerValue;
	}

	panTo(latLon)
	{
		this.lat = latLon[0];
		this.lon = latLon[1];
	}

	setZoom(zoom)
	{
		this.zoom = zoom;
	}
}