1.在百度地图申请ak码
2.在项目中index.html中引用<script type="text/javascript" src=";ak=YOU_AK"></script>3.在你要使用的ts中添加declare var BMap; 4.在你的方法中就可以使用百度的api了例:var geolocation = new BMap.Geolocation(); geolocation.getCurrentPosition(function(r){ console.log(r.point.lat,r.point.lng); });