Angular-google-maps: ๋งˆ์ปค ์œ„๋„/๊ฒฝ๋„์— ๋Œ€ํ•œ ์–‘๋ฐฉํ–ฅ ๋ฐ”์ธ๋”ฉ์€ ์–ด๋–ป์Šต๋‹ˆ๊นŒ?

์— ๋งŒ๋“  2017๋…„ 07์›” 07์ผ  ยท  4์ฝ”๋ฉ˜ํŠธ  ยท  ์ถœ์ฒ˜: SebastianM/angular-google-maps

(์ œ๋ชฉ ์ฝ๊ธฐ)
์ถ”์‹  exportAs: 'agmMarker'

๊ฐ€์žฅ ์œ ์šฉํ•œ ๋Œ“๊ธ€

@matt-lethargic Smth๋Š” ๋‹ค์Œ๊ณผ ๊ฐ™์Šต๋‹ˆ๋‹ค.
<agm-marker [markerDraggable]="true" (dragEnd)="markerMoved($event)" [latitude]="latitude || 39.8282" [longitude]="longitude || -98.5795"></agm-marker>

markerMoved(e) { const geocoder = new google.maps.Geocoder(); geocoder.geocode({'location': e.coords}, (res, status) => { if (status === google.maps.GeocoderStatus.OK && res.length) { this.ngZone.run(() => this.setLocation(res[0])); } }) }

setLocation(place) { this.latitude = place.geometry.location.lat(); this.longitude = place.geometry.location.lng(); }

๋ชจ๋“  4 ๋Œ“๊ธ€

์ €๋Š” Angular2์™€ AGM์„ ์ฒ˜์Œ ์‚ฌ์šฉํ•˜์ง€๋งŒ ์ด ๊ธฐ๋Šฅ์„ ์ •๋ง ์ข‹์•„ํ•  ๊ฒƒ์ž…๋‹ˆ๋‹ค. ์ด๋ฏธ ํฌํ•จ๋˜์–ด ์žˆ์„ ๊ฑฐ๋ผ๊ณ  ์ƒ๊ฐํ–ˆ์Šต๋‹ˆ๋‹ค.
๋“œ๋ž˜๊ทธ ํ•œ ๋งˆ์ปค์—์„œ ์œ„๋„/๊ฒฝ๋„๋ฅผ ์–ป๋Š” ๋ฐฉ๋ฒ•์„ ์•„๋Š” ์‚ฌ๋žŒ์ด ์žˆ์Šต๋‹ˆ๊นŒ?

@matt-lethargic Smth๋Š” ๋‹ค์Œ๊ณผ ๊ฐ™์Šต๋‹ˆ๋‹ค.
<agm-marker [markerDraggable]="true" (dragEnd)="markerMoved($event)" [latitude]="latitude || 39.8282" [longitude]="longitude || -98.5795"></agm-marker>

markerMoved(e) { const geocoder = new google.maps.Geocoder(); geocoder.geocode({'location': e.coords}, (res, status) => { if (status === google.maps.GeocoderStatus.OK && res.length) { this.ngZone.run(() => this.setLocation(res[0])); } }) }

setLocation(place) { this.latitude = place.geometry.location.lat(); this.longitude = place.geometry.location.lng(); }

<agm-marker (dragEnd)="draggEnded($event)" [markerDraggable]="true" [latitude]="tripMirror.departure?.latitude" [longitude]="tripMirror.departure?.longitude" iconUrl="assets/icons/icon_marker_red.png"></agm-marker>

์–ด๋–ค ์ด์œ ์—์„œ์ธ์ง€ ๋“œ๋ž˜๊ทธํ•˜๋ ค๊ณ  ํ•˜๋ฉด ์ „์ฒด ๋งต๋งŒ ์ด๋™ํ•˜๊ณ  ๋งˆ์ปค๋ฅผ ์ด๋™ํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค... ๋„์›€์ด ํ•„์š”ํ•˜์‹ญ๋‹ˆ๊นŒ?

์ด ๋ฌธ์ œ๋Š” ์ตœ๊ทผ ํ™œ๋™์ด ์—†์—ˆ๊ธฐ ๋•Œ๋ฌธ์— ์ž๋™์œผ๋กœ ์˜ค๋ž˜๋œ ๊ฒƒ์œผ๋กœ ํ‘œ์‹œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค. ๋” ์ด์ƒ ํ™œ๋™์ด ์—†์œผ๋ฉด ํ์‡„๋ฉ๋‹ˆ๋‹ค. ๊ท€ํ•˜์˜ ๊ธฐ์—ฌ์— ๊ฐ์‚ฌ๋“œ๋ฆฝ๋‹ˆ๋‹ค.

์ด ํŽ˜์ด์ง€๊ฐ€ ๋„์›€์ด ๋˜์—ˆ๋‚˜์š”?
0 / 5 - 0 ๋“ฑ๊ธ‰