You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
359 B

  1. (function () {
  2. var page = {
  3. init: function ($page) {
  4. GaoDe.getCurrentPosition(function (success) {
  5. }, function (error) {
  6. });
  7. var map = new AMap.Map('amapcontainer', {
  8. center: [117.000923, 36.675807],
  9. zoom: 15
  10. });
  11. }
  12. };
  13. return page;
  14. })();