Commit 1692f6be authored by Alish's avatar Alish
Browse files

fix: removed hard coded location admin-app #1038

parent d9ebcca7
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -64,8 +64,11 @@ export class WarehouseTrackComponent implements OnInit {
	}

	showMap() {
		const lat = environment.DEFAULT_LATITUDE;
		const lng = environment.DEFAULT_LONGITUDE;

		const mapProp = {
			center: new google.maps.LatLng(42.642941, 23.334149),
			center: new google.maps.LatLng(lat, lng),
			zoom: 15,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};