7
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google Map読込完了後に一度だけ処理したい時

Posted at

なんやかんやのメモ。

$(function(){	//ページ読込後の処理
  //gmap初期化  
  var myMap = new google.maps.Map(document.getElementById('map'), {
    zoom: 7,//地図縮尺
    center: new google.maps.LatLng(34.420263,133.242224),//地図の中心点
    scrollwheel: false,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  });
 
  google.maps.event.addListenerOnce(myMap, 'idle', function(){
    //gmap初期化後の処理
  });
});
7
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?