jQuery Store Locator 插件使用教程
jQuery-Store-Locator-PluginA store locator plugin using Google Maps API version 3项目地址:https://www.qianduange.cn/upload/article/│ ├── jqvmap.css│ ├── loa.gif
│ ├── map.css
│ └── style.css
├── images/
│ ├── blue.png
│ ├── green.png
│ ├── icon.png
│ └── red.png
├── js/
│ ├── handlebars.js
│ ├── jquery.js
│ ├── jquery.storelocator.js
│ └── jquery.storelocator.min.js
├── templates/
│ ├── infowindow.html
│ ├── listitem.html
│ └── location-form.html
├── index.html
└── README.md
以上是 jQuery Store Locator 插件的基本使用教程,涵盖了项目的目录结构、启动文件和配置文件的介绍。希望对您有所帮助! jQuery-Store-Locator-PluginA store locator plugin using Google Maps API version 3项目地址:https://gitcode.com/gh_mirrors/jq/jQuery-Store-Locator-Plugin 目录结构介绍
map.css
和 style.css
。jquery.storelocator.js
和依赖的库文件。2. 项目的启动文件介绍
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Store Locator</title>
<link rel="stylesheet" href="css/map.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="store-locator-example"></div>
<script src="js/jquery.js"></script>
<script src="js/handlebars.js"></script>
<script src="js/jquery.storelocator.js"></script>
<script>
$(function() {
$('#store-locator-example').storeLocator({
'dataType': 'json',
'dataLocation': 'locations.json'
});
});
</script>
</body>
</html>
启动文件介绍
div
元素。3. 项目的配置文件介绍
jquery.storelocator.js
(function($) {
$.fn.storeLocator = function(options) {
var settings = $.extend({
'dataType': 'json',
'dataLocation': 'locations.json',
'fullMapStart': true,
'lengthUnit': 'miles',
'defaultLoc': true,
'defaultLat': '40.7127753',
'defaultLng': '-74.0059728',
'mapSettings': {
'zoom': 12,
'mapTypeId': google.maps.MapTypeId.ROADMAP,
'mapTypeControl': false
}
}, options);
// 插件核心逻辑
};
}(jQuery));
配置文件介绍
json
、xml
和 kml
。miles
和 kilometers
。