|
|
|
@ -537,7 +537,7 @@ export class GisLabelingComponent implements OnInit {
|
|
|
|
|
image = '/assets/fireForcesMarkers/dadui.png' |
|
|
|
|
} else if (item.level == 3) { |
|
|
|
|
image = '/assets/fireForcesMarkers/zhongdui.png' |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
image = '/assets/fireForcesMarkers/qita.png' |
|
|
|
|
} |
|
|
|
|
// 用于点集合的数组
|
|
|
|
@ -1174,10 +1174,10 @@ export class GisLabelingComponent implements OnInit {
|
|
|
|
|
this.allCompany = data.items |
|
|
|
|
this.snackBar.open(`搜索目标结果为${data.items.length}个`, '确定', config); |
|
|
|
|
} else { //高德api 搜索
|
|
|
|
|
placeSearch.search(that.searchText, (status, result)=>{ |
|
|
|
|
placeSearch.search(that.searchText, (status, result) => { |
|
|
|
|
if (status != "complete") { |
|
|
|
|
this.snackBar.open(`搜索目标结果为0个`, '确定', config); |
|
|
|
|
console.log(status,result) |
|
|
|
|
console.log(status, result) |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (result.poiList.pois.length) { |
|
|
|
@ -1188,7 +1188,7 @@ export class GisLabelingComponent implements OnInit {
|
|
|
|
|
buildingTypes: [], |
|
|
|
|
id: null, |
|
|
|
|
imageUrl: null, |
|
|
|
|
location: {x: element.location.lng, y: element.location.lat}, |
|
|
|
|
location: { x: element.location.lng, y: element.location.lat }, |
|
|
|
|
name: element.name |
|
|
|
|
} |
|
|
|
|
resultList.push(item) |
|
|
|
@ -1363,7 +1363,7 @@ export class GisLabelingComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
let data = { |
|
|
|
|
url: 'https://', |
|
|
|
|
buildingType: e.buildingTypes.length? e.buildingTypes[0].name : null, |
|
|
|
|
buildingType: e.buildingTypes.length ? e.buildingTypes[0].name : null, |
|
|
|
|
address: e.address |
|
|
|
|
} |
|
|
|
|
let dialogRef = this.dialog.open(ShareUrlDialog, {//调用open方法打开对话框并且携带参数过去
|
|
|
|
@ -1397,13 +1397,13 @@ export class GisLabelingComponent implements OnInit {
|
|
|
|
|
let that = this |
|
|
|
|
window.clearTimeout(this.timeout) |
|
|
|
|
this.timeout = window.setTimeout(() => { |
|
|
|
|
|
|
|
|
|
that.map.getCity(function (info) { //获取当前 city
|
|
|
|
|
var autoOptions = { city: info.city } |
|
|
|
|
let keywords |
|
|
|
|
e == 0 ? keywords = that.routeStart : keywords = that.routeEnd |
|
|
|
|
var autoComplete = MapFactory.AutocompleteInstance(autoOptions, that); |
|
|
|
|
autoComplete.search(keywords, function (status, result) { |
|
|
|
|
console.log(result) |
|
|
|
|
if (result && result.tips && result.tips.length) { //搜索到数据时
|
|
|
|
|
that._ngZone.run(() => { |
|
|
|
|
if (e == 0) {//起点
|
|
|
|
|