JavaScript get GeoLocation

agnusdei·2023년 7월 5일
0
post-custom-banner
window.navigator.geolocation.getCurrentPosition(
      (position) => {
        this.mapOptions.center = {
          lat: position.coords.latitude,
          lng: position.coords.longitude,
        };
        this.isLocationLoaded = true;
      },
      () => {
        this.isLocationLoaded = true;
      }
    );

0개의 댓글