google.map

Polyline sample

I was surprised that drawing Polylines is so fast. Drawing 10000 lines takes less than 1 seconds. I will try to another way to improve performance. <html> <head> <title>Google Map Marker Sample</title> <meta charset="UTF-8"> </meta></head></html>

JavaFX with google map and JSON sample

Thanks to this web siteAdding HTML Content to JavaFX Applications | JavaFX 2 Tutorials and Documentation, it it easy making upcalls from JavaScript to JavaFX. 1.Adding lines to HTML's table and creating Marker on this map, by clicking on t…

JavaFX with google map and JSON sample

1.google map上でクリックしたポイントを元に、HTMLのTableに行を追加とmap上にマーカーを表示。 2.上記1の情報をJavaScriptからJavaFXのメソッドをcallしてJson形式のファイルとして保存。 3.JavaFXで上記2のjsonファイルを読み込んで、JavaScriptのメソ…

PolylineとclickしたポイントにMarker表示するメモ

地図でクリックした場所のMarkerを表示、クリックした位置情報をTableにも表示する。 [save to json]ボタンでファイルに保存するのはJavaFXで実装する予定、、、 sample.html <html> <head> <title>Google Map Polyline Sample</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </meta></meta></head></html>

google mapのズームとバインドのメモ

以下の地図で大阪、京都、兵庫のマーカーを作成。 全マーカが地図に表示されるようにズームを設定。 var bounds = new google.maps.LatLngBounds(); infos.forEach(function(info){ var myLatlng = new google.maps.LatLng(info.lat, info.lng); // 対象のマ…