깜놀하는 해므찌로

Typesciprt 현재 지도 위치 좌표 가져오기 본문

IT

Typesciprt 현재 지도 위치 좌표 가져오기

agnusdei1207 2023. 5. 11. 15:03
반응형
SMALL
window.navigator.geolocation.getCurrentPosition(
      (position) => {
        this.mapOptions.center = {
          lat: position.coords.latitude,
          lng: position.coords.longitude,
        };
        this.isLocationLoaded = true;
      },
      () => {
        this.isLocationLoaded = true;
      }
    );
반응형
LIST