Guest User

Untitled

a guest
Dec 10th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. (function() {
  2. var gomala;
  3. gomala = {
  4. map: null,
  5. setMap: function(center) {
  6. var myOptions;
  7. myOptions = {
  8. zoom: 13,
  9. center: center,
  10. mapTypeId: google.maps.MapTypeId.ROADMAP
  11. };
  12. return this.map = new google.maps.Map($("#map_canvas")[0], myOptions);
  13. }
  14. };
  15. gomala.setMap();
  16. }).call(this);
Add Comment
Please, Sign In to add comment