Language
Login
Language Setting
X
English
日本語 [Japanese]
about this App
本厚木駅周辺のホルモン屋一覧MAP
useful
1
Loading...
/* This is a Example program to retrieve and display the data. Press the Run button on the right of the screen (described the behavior of the Example program below). Please create a new application rewrite this program work. */ var all_data; function initialize(){ all_data = new Array(); // データをLinkDataから取得 tmp_a_data = new Array(); $.each(LinkData.getWorks(), function(workKey, workValue) { //$("#result").append("<h3>Work: " + workValue + "</h3>"); $.each(LinkData.getFiles(workValue), function(fileKey, fileValue) { $.each(LinkData.getSubjects(workValue, fileValue), function(subjKey, subjValue) { var tmp_data = {} tmp_data["id"] = subjValue; $.each(LinkData.getProperties(workValue, fileValue), function(propKey, propValue) { $.each(LinkData.getObjects(workValue, fileValue, subjValue, propValue), function(objKey, objValue) { if(propValue == "http://linkdata.org/property/rdf1s1005i#Address"){ tmp_data["address"] = objValue; }else if(propValue == "http://www.w3.org/2003/01/geo/wgs84_pos#lat"){ tmp_data["lat"] = objValue; }else if(propValue == "http://www.w3.org/2003/01/geo/wgs84_pos#long"){ tmp_data["longitude"] = objValue; }else if(propValue == "http://linkdata.org/property/rdf1s1005i#Time"){ tmp_data["Time"] = objValue; }else if(propValue == "http://linkdata.org/property/rdf1s1005i#PhoneNum"){ tmp_data["PhoneNum"] = objValue; }else if(propValue == "http://linkdata.org/property/rdf1s1005i#NearBusSta"){ tmp_data["NearBusSta"] = objValue; }else if(propValue == "http://linkdata.org/property/rdf1s1005i#StartBusSta"){ tmp_data["StartBusSta"] = objValue; }else if(propValue == "http://linkdata.org/property/rdf1s1005i#Name"){ tmp_data["Name"] = objValue; } }); }); tmp_a_data.push(tmp_data); }); }); }); //全データ all_data = tmp_a_data; //全データを地図上に表示 // 地図センター緯度経度の初期値は「本厚木駅」 var latlng = new google.maps.LatLng(35.439349,139.36476649999997); var myOptions = { zoom: 15, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("result"), myOptions); // ウィンドウに表示するデータをつくる var data = new Array(); for (var i in all_data){ var value = all_data[i].label; data.push({position: new google.maps.LatLng(all_data[i].lat, all_data[i].longitude), content: all_data[i].Name + '<br><small>住所:' + all_data[i].address +'<br>営業時間:'+ all_data[i].Time + '<br>電話番号:' + all_data[i].PhoneNum + '<br>最寄りのバス停:' + all_data[i].NearBusSta + '<br>バスのりば:' + all_data[i].StartBusSta + '<br>' + '</small>'}); }; // 地図上にウィンドウで表示 for (i = 0; i < data.length; i++) { var marker = new google.maps.Marker({ position: data[i].position, map: map }); attachMessage(marker, data[i].content); }; }; // 地図のマーカーをクリックするとウィンドウを表示する処理 function attachMessage(marker, msg) { google.maps.event.addListener(marker, 'click', function(event) { new google.maps.InfoWindow({ content: msg }).open(marker.getMap(), marker); }); }; window.onload = function() { $(function(){ initialize(); }); };
<style type="text/css"> html { height: 100% } body { height: 100%; margin: 0; padding: 0 } #map_canvas { height: 100% } </style> <div id="result" style="width:100%; height:100%"></div>
Preview
Input Data
ReadMe
Snapshots
LinkData Work
Table Data
本厚木駅周辺のホルモン屋一覧
Contributor:渡邊輝
Update:Jan 8, 2014
247 Downloads, 1 Applications
厚木市の本厚木駅から出発するバスで行けるホルモン屋の一覧です
Atsugi_horumon2013_1
横浜市公衆トイレ位置情報(平成19年4月1日)
Contributor:松本豊
Update:Feb 18, 2013
2307 Downloads, 11 Applications
横浜市公衆トイレ位置情報。公衆トイレの住所データをもとに、緯度経度データ抽出し、付加しました。(「http://napzak.com/tool/gcode/」で住所を緯度経度に変換)追記:住所データから緯度経度を抽出したため、地図上で見るとトイレの正確な位置とはズレる。
public_lavatory_20070401
Add LinkData work(LinkData)
Link http://app.linkdata.org/run/app1s506i?tab=readme
Initial content
jquery-1.7.1.min.js
http://maps.googleapis.com/maps/api/js?sensor=false
Work
Add
Clear
insert work id or work name.