|
|
@@ -75,7 +75,7 @@
|
|
|
class="map-box"
|
|
|
id="map"
|
|
|
show-location
|
|
|
- :markers="marker"
|
|
|
+ :markers="markerJHZ"
|
|
|
:scale="scale"
|
|
|
:latitude="latitude4"
|
|
|
:longitude="longitude4"
|
|
|
@@ -187,6 +187,7 @@ export default {
|
|
|
loadingType: 'more',
|
|
|
markerList: [],
|
|
|
marker: [],
|
|
|
+ markerJHZ: [],
|
|
|
longitude: '121.15829821166992',
|
|
|
latitude: '30.044394499237708',
|
|
|
longitude1: '120.553638',
|
|
|
@@ -272,6 +273,15 @@ export default {
|
|
|
height: '45'
|
|
|
}
|
|
|
];
|
|
|
+ obj.markerJHZ = [
|
|
|
+ {
|
|
|
+ longitude: res.longitude,
|
|
|
+ latitude: res.latitude,
|
|
|
+ iconPath: '/static/img/jhzlogo.png',
|
|
|
+ width: '45',
|
|
|
+ height: '45'
|
|
|
+ }
|
|
|
+ ];
|
|
|
obj.loadData();
|
|
|
},
|
|
|
fail(e) {
|