mirror of
https://github.com/Ekokumppanit/Lentolaskuri.git
synced 2026-01-26 11:13:58 +00:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
'use strict';
|
|
|
|
// convert Google Maps into an AMD module
|
|
define([
|
|
'async!http://maps.google.com/maps/api/js?v=3&sensor=false'
|
|
], function() {
|
|
// return the gmaps namespace for brevity
|
|
return window.google.maps;
|
|
});
|