|
@@ -1529,7 +1529,11 @@
|
|
|
if(this.cameraList.length>500){
|
|
|
markersMap.isAggregation = true
|
|
|
}
|
|
|
- markersMap.parameter=this.cameraList[i].channelCode.split(",");
|
|
|
+ if(this.cameraList[i].channelCode!=null){
|
|
|
+ markersMap.parameter=this.cameraList[i].channelCode.split(",");
|
|
|
+ }else{
|
|
|
+ markersMap.parameter=[];
|
|
|
+ }
|
|
|
markersMap.lng=this.cameraList[i].longitude;
|
|
|
markersMap.lat=this.cameraList[i].latitude;
|
|
|
markersMap.bindPopupHtml = '<div class="map-tip">' +
|