geo 坐标。
1.7.0
import { lbs, type GeoPosition } from 'minigame-std';const result = await lbs.getCurrentPosition();if (result.isOk()) { const pos: GeoPosition = result.unwrap(); console.log('纬度:', pos.latitude, '经度:', pos.longitude);} Copy
import { lbs, type GeoPosition } from 'minigame-std';const result = await lbs.getCurrentPosition();if (result.isOk()) { const pos: GeoPosition = result.unwrap(); console.log('纬度:', pos.latitude, '经度:', pos.longitude);}
纬度。
经度。
geo 坐标。
Since
1.7.0
Example