33 lines
813 B
JavaScript
33 lines
813 B
JavaScript
/*window.easyPackAsyncInit = function () {
|
|
easyPack.init({
|
|
defaultLocale: 'pl',
|
|
locales: ['pl'],
|
|
assetsServer: 'https://geowidget.easypack24.net',
|
|
infoboxLibraryUrl: '/js/lib/infobox.min.js',
|
|
markersUrl: '/images/desktop/markers/',
|
|
iconsUrl: '/images/desktop/icons/',
|
|
loadingIcon: '/images/desktop/icons/ajax-loader.gif',
|
|
});
|
|
var map = easyPack.mapWidget('easypack-map', function(point) {
|
|
console.log(point);
|
|
alert(point.name, point.location_description);
|
|
});
|
|
};*/
|
|
$('.openMap').on('click', function(){
|
|
|
|
alert('xxx');
|
|
|
|
});
|
|
$(document).ready(function(){
|
|
|
|
$('.openMap').on('click', function(){
|
|
|
|
alert('xxx');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function geoMap() {
|
|
alert('xxx');
|
|
} |