ありがとうございます。
で、ブラウザで、javascirpt でも位置情報取得できるじゃないですか。
navigator.geolocation.getCurrentPoition(succ,err,opt);
みたいなやつ、
あれ、結果返ってくるまでに時間かかりますので、気をつけて下さい。
調子こいてオブジェクト化して楽して使いまわせるようにしようとか思って、
- var GPS = function(){
- this.curr();
- }
- _GPS = GPS.prototype;
- _GPS.geo = navigator.geolocation;
- _GPS.lat = 0; // latitude
- _GPS.lng =0; // longitude
- _GPS.time = 0 // time
- _GPS.e = false // error -> true;
- _GPS.opt = {
enableHighAccuracy : true,
timeout : 5000,
maximumAge : 0 - };
- _GPS.getTime = function(){
- this.time= (new Date()).getTime();
- }
- _GPS.succ = function(pos){
var co = pos.coords; - _GPS.lat = co.latitude;
- _GPS.lng = co.longitude;
_GPS.getTime();
} - _GPS.err = function(e){
_GPS.e = true;
_GPS.lat = -1;
_GPS.lng = -1;
_GPS.getTime(); - }
- _GPS.curr = function(){
- var _t = this;
_t.geo.getCurrentPosition(_t.succ,_t.err,_t.opt); - }
とかだと、
var gps = new GPS();
alert(gps.lat); => 0
で、はぁ?ってなります。
なので、
- var GPS = function(){
- this.curr();
- }
- _GPS = GPS.prototype;
- _GPS.geo = navigator.geolocation;
- _GPS.lat = 0; // latitude
- _GPS.lng =0; // longitude
- _GPS.time = 0 // time
- _GPS.e = false // error -> true;
- _GPS.get = false // got location -> true
- _GPS.opt = {
enableHighAccuracy : true,
timeout : 5000,
maximumAge : 0 - };
- _GPS.getTime = function(){
- this.time= (new Date()).getTime();
- }
- _GPS.succ = function(pos){
var co = pos.coords; - _GPS.lat = co.latitude;
- _GPS.lng = co.longitude;
_GPS.getTime(); - _GPS.get = true;
} - _GPS.err = function(e){
_GPS.e = true;
_GPS.lat = -1;
_GPS.lng = -1;
_GPS.getTime(); - _GPS.get = true;
- }
- _GPS.curr = function(){
- var _t = this;
_t.geo.getCurrentPosition(_t.succ,_t.err,_t.opt); - }
で、
var gps = new GPS();
var loop = setInterval(function(){
if(gps.get){
alert(gps.lat + " - " + gps.lng);
clearInterval(loop);
}
},500);
とかみたいにしなきゃダメっすね。
まぁ、結論としては、普通に書いた方がいいって感じ。
どうしてもグローバルにいろいろ書きたくないんじゃーって人は、
こんな感じになるんでしょうかね。
あと、success の function の中が深くなるのが嫌な人とかかな?
まぁ、そんな感じで。
0 件のコメント:
コメントを投稿