php 基本的谷歌地图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 基本的谷歌地图相关的知识,希望对你有一定的参考价值。

window.initMap = function() {
	const googleMap = document.getElementById('google-map');

	const location = {lat: 37.180662, lng: -113.330019}; // put business lat, lng here
	const mapStyles = [{
		featureType: "poi.business",
	}];

	const map = new google.maps.Map(googleMap, {
		zoom: 16,
		center: location,
		disableDefaultUI: true,
		styles: mapStyles,
	});

	const marker = new google.maps.Marker({
		position: location,
		map: map,
	});
};
	// Add this to base_theme_styles_and_scripts
	// Define page you need the map for in is_page
	// This way we are loading the script everywhere
	// The end of the enqueue string includes a callback to our fuction in map.js
	
	if ( is_page( 'contact' ) ) {
		wp_enqueue_script( 'google-maps', 'https://maps.googleapis.com/maps/api/js?key=AIzaSyCVfQzeQwpAik9QGUqam6GDI179D4zzWos&callback=initMap', array(), null, true );
	}

以上是关于php 基本的谷歌地图的主要内容,如果未能解决你的问题,请参考以下文章

从 php 中的谷歌地图获取国家名称

使用适用于 iOS 的谷歌地图 SDK 进行标记聚类?

使用片段的谷歌地图

带有离子的谷歌地图

上面有布局层的谷歌地图

苹果手机的谷歌地图怎么删除