地図のMarkerをクリックで、場所の名前を表示する機能 function create_marker(lat, lng, name) { var marker_options = { map: map_canvas, position: new google.maps.Lat… worldwithoutminハック2017.08.23 218
Ajax通信で、WordPressからスマホアプリの地図に表す。 Admin-ajax.phpの中 add_action(‘wp_ajax_tell_me’, ‘tell_me’); // ログイン状態のユーザーからのアクセスで動作する add_action(‘wp_ajax_nopr… worldwithoutminハック2017.08.23 257
Ajax通信 AEDデーター(全て) smartphoneApp > index.html <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <me… worldwithoutminハック2017.08.23 469
Ajax 通信(Response = Answer) 完成 (Download these & put in smartphoneApp -> index.html http://jquery.com/download/ https://github.com/padols… worldwithoutminハック2017.08.18 371
wordpressにcsvデーターをcustom field templateに載せる <?php try { require(‘../wp-blog-header.php’); //date_default_timezone_set(‘Asia/Tokyo’); //$todaytime = dat… worldwithoutminハック2017.08.09 148
AEDのCSVデーターから、PHPで読み込む <?php $file = fopen(“AED.csv”,”r”); while (! feof($file)){ $csv = fgetcsv($file); $aed = array( “name” =>… worldwithoutminハック2017.08.04 102
AED設備の場所をWordPressに載せるCustom Field Template Template content [name] type = textfield size = 35 label = Name [address] type = textfield size = 70 label = A… worldwithoutminハック2017.08.04 155
WordPressで不動産が使うデーターを載せるテンプレ Template Content [rent] //label = 賃料(必須) type = textfield size = 20 class = number required after = 円 [room_la… worldwithoutminハック2017.08.04 183
地図の色を青いにしたアプリです。 スマホアプリで、Google Mapを表示するには、以下のコードを使いました。 どの部分はなにを変更したかとコメントで書いています。 <script type=”text/javascript” src=”http… worldwithoutminハック2017.08.02 311