作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
地理编码后,我无法将我的 Google map 置于标记上。
我有两个标记:初始标记(一个居中的,不改变),另一个根据地理编码改变,地理编码后,每次都会居中。
我的代码:客服
zoom = 10;
addressData: FormGroup;
submitted = false;
success = false;
lat: number;
lng: number;
userLat: number;
userLng: number;
currentCenter = { lat: null, lng: null };
private geoCoder: google.maps.Geocoder;
@ViewChild('googleMap') googleMap: AgmMap;
constructor(private maps: MapsAPILoader, private bulider: FormBuilder) { }
ngOnInit() {
this.addressData = this.bulider.group({
address: ["", Validators.required],
});
this.maps.load().then(() => {
this.geoCoder = new google.maps.Geocoder();
});
}
getAddress() {
this.submitted = true;
if (this.addressData.invalid) {
return;
}
this.success = true;
this.googleMap.mapReady.subscribe(map => {
// Need to use two parameters in order to use Geocoder
this.geoCoder.geocode(this.addressData.controls['address'].value, (results, status) => {
if (status === google.maps.GeocoderStatus.OK) {
this.userLat = results[0].geometry.location.lat();
this.userLng = results[0].geometry.location.lng();
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
}).then(place => {
this.currentCenter = { lat: place.geometry.location.lat(), lng: place.geometry.location.lng() };
}).catch(err => {
console.log("Error: " + err);
});
this.submitted = false;
}
<!-- Google maps, the starting latitude & longitude -->
<agm-map [latitude]="currentCenter.lat" [longitude]="currentCenter.lng" [zoom]="zoom" [mapTypeControl]='true'
#googleMap>
<!-- Static marker -->
<agm-marker [latitude]="defaultCenter.lat" [longitude]="defaultCenter.lng"></agm-marker>
<!-- User geolocation marker, changes -->
<agm-marker [latitude]="currentCenter.userLat" [longitude]="currentCenter.userLng"></agm-marker>
</agm-map>
Geocode
需要两个参数。 ,但 Vadim 的代码只有一个。我无法使用此代码。另外,如果我添加第二个参数,它会说
then
不存在。
this.googleMap.mapReady.subscribe(map => {
// This line needs two parameters not one
this.geoCoder.geocode(this.addressData.controls['address'].value)
.then(place => {
this.currentCenter = { lat: place.geometry.location.lat(), lng: place.geometry.location.lng() };
}).catch(err => {
console.log("Error: " + err);
});
});
最佳答案
无需借助 Google Maps API 或调用 Map 组件 triggerResize
方法,要更新 map 中心,可以考虑以下方法:
a) 加载 map 后将 map 中心设置为默认值
<agm-map
[latitude]="currentCenter.lat"
[longitude]="currentCenter.lng"
[zoom]="zoom"
[mapTypeControl]="true"
>
<!-- Static marker -->
<agm-marker
[latitude]="defaultCenter.lat"
[longitude]="defaultCenter.lng"
></agm-marker>
<!-- User geolocation marker, changes -->
<agm-marker
[latitude]="currentCenter.lat"
[longitude]="currentCenter.lng"
></agm-marker>
</agm-map>
currentCenter
- 当前 map 中心defaultCenter
- 默认(原始) map 中心ngOnInit() {
this.agmMap.mapReady.subscribe(map => {
this.geocode("New York, USA").then(place => {
this.currentCenter = { lat: place.geometry.location.lat(), lng: place.geometry.location.lng()};
})
.catch(err => {
console.log(err);
});
});
}
declare var google: any;
import { Component, ViewChild, OnInit} from "@angular/core";
import { AgmMap } from "@agm/core";
@Component({
selector: "app-map",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.css"]
})
export class AppComponent implements OnInit {
constructor() {}
defaultCenter = {lat: 55.5815245, lng: 36.8251383};
currentCenter = Object.assign({}, this.defaultCenter);
zoom = 3;
@ViewChild(AgmMap) agmMap;
ngOnInit() {
this.agmMap.mapReady.subscribe(map => {
this.geocode("New York, USA").then(place => {
this.currentCenter = { lat: place.geometry.location.lat(), lng: place.geometry.location.lng()};
})
.catch(err => {
console.log(err);
});
});
}
geocode(address: string): Promise<any> {
const geocoder = new google.maps.Geocoder();
return new Promise((resolve, reject) => {
geocoder.geocode(
{
address: address
},
(results, status) => {
if (status === google.maps.GeocoderStatus.OK) {
resolve(results[0]);
} else {
reject(new Error(status));
}
}
);
});
}
}
<input [(ngModel)]="addressText">
<button (click)="findPlace()">Find a place</button>
findPlace() {
this.geocode(this.addressText).then(place => {
this.currentCenter = { lat: place.geometry.location.lat(), lng: place.geometry.location.lng()};
})
.catch(err => {
console.log(err);
});
}
关于angular - 如何将 map 设置为以标记为中心? - Angular 谷歌地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56891073/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!