ACF谷歌地图 - 更改风格?

3
我有一个运行中的Wordpress网站,并使用ACF插件创建了Google地图字段。这很好,但我想更改默认的Google地图样式。我需要一种浅色 - 灰度样式来呈现我的网站地图。 我使用了ACF文档中下面的代码,它能正常工作,但是当我尝试更改任何样式时,什么都没有发生。 我必须指出我不精通JavaScript / jQuery,请考虑到这一点。 我查看了整个Google地图API文档,但我无法成功。我尝试过很多东西,要么什么都没有发生,要么我破坏了Google地图。 是否有人可以指导我正确方向,或者给我一个带有说明的示例代码。我应该删除现有代码的部分还是不应该,或者只是添加额外的代码等? 提前感谢,祝一切顺利!
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
(function($) {

/*
*  render_map
*
*  This function will render a Google Map onto the selected jQuery element
*
*  @type    function
*  @date    8/11/2013
*  @since   4.3.0
*
*  @param   $el (jQuery element)
*  @return  n/a
*/

function render_map( $el ) {

    // var
    var $markers = $el.find('.marker');

    // vars
    var args = {
        zoom        : 11,
        center      : new google.maps.LatLng(0, 0),
        mapTypeId   : google.maps.MapTypeId.TERRAIN
    };



    // create map               
    var map = new google.maps.Map( $el[0], args);

    // add a markers reference
    map.markers = [];

    // add markers
    $markers.each(function(){

        add_marker( $(this), map );

    });

    // center map
    center_map( map );


}

/*
*  add_marker
*
*  This function will add a marker to the selected Google Map
*
*  @type    function
*  @date    8/11/2013
*  @since   4.3.0
*
*  @param   $marker (jQuery element)
*  @param   map (Google Map object)
*  @return  n/a
*/
function initialize() {

  // Create an array of styles.
  var styleArray = ('mojaMapa')[
  {
    featureType: "all",
    stylers: [
      { saturation: -80 }
    ]
  },{
    featureType: "road.arterial",
    elementType: "geometry",
    stylers: [
      { hue: "#00ffee" },
      { saturation: 50 }
    ]
  },{
    featureType: "water",
    elementType: "geometry.fill",
    stylers: [
      { hue: "#00ffee" },
      { saturation: 50 },
      { color: '#adc9b8'} 
    ]
  },{
    featureType: "poi.business",
    elementType: "labels",
    stylers: [
      { visibility: "off" }
    ]
  }
];

map.setOptions({styles: styles});

  // Create a new StyledMapType object, passing it the array of styles,
  // as well as the name to be displayed on the map type control.
  map.setOptions({styles: styles}); 
  // Create a map object, and include the MapTypeId to add
  // to the map type control.
  var mapOptions = {
    zoom: 11,
    center: new google.maps.LatLng(55.6468, 37.581),
    mapTypeControlOptions: {
      mapTypeIds: (google.maps.MapTypeId.TERRAIN, 'mojaMapa')
    }
  };
  var map = new google.maps.Map(document.getElementById('map-canvas'),
    mapOptions);

  //Associate the styled map with the MapTypeId and set it to display.
  map.mapTypes.set('mojaMapa', styledMap);
  map.setMapTypeId('mojaMapa');
}

function add_marker( $marker, map ) {

    // var
    var latlng = new google.maps.LatLng( $marker.attr('data-lat'), $marker.attr('data-lng') );

    // create marker
    var marker = new google.maps.Marker({
        position    : latlng,
        map         : map
    });

    // add to array
    map.markers.push( marker );

    // if marker contains HTML, add it to an infoWindow
    if( $marker.html() )
    {
        // create info window
        var infowindow = new google.maps.InfoWindow({
            content     : $marker.html()
        });

        // show info window when marker is clicked
        google.maps.event.addListener(marker, 'click', function() {

            infowindow.open( map, marker );

        });
    }

}

/*
*  center_map
*
*  This function will center the map, showing all markers attached to this map
*
*  @type    function
*  @date    8/11/2013
*  @since   4.3.0
*
*  @param   map (Google Map object)
*  @return  n/a
*/

function center_map( map ) {

    // vars
    var bounds = new google.maps.LatLngBounds();

    // loop through all markers and create bounds
    $.each( map.markers, function( i, marker ){

        var latlng = new google.maps.LatLng( marker.position.lat(), marker.position.lng() );

        bounds.extend( latlng );

    });

    // only 1 marker?
    if( map.markers.length == 1 )
    {
        // set center of map
        map.setCenter( bounds.getCenter() );
        map.setZoom( 16 );
    }
    else
    {
        // fit to bounds
        map.fitBounds( bounds );
    }

}

/*
*  document ready
*
*  This function will render each map when the document is ready (page has loaded)
*
*  @type    function
*  @date    8/11/2013
*  @since   5.0.0
*
*  @param   n/a
*  @return  n/a
*/

$(document).ready(function(){

    $('.acf-map').each(function(){

        render_map( $(this) );

    });

});

})(jQuery);
</script>
3个回答

11

你可以通过谷歌地图文档尝试许多不同的样式选项。

我在样式选项中进行了一些更改,你也可以尝试使用自己喜欢的颜色。

var args = {
    zoom: 15,
    center: new google.maps.LatLng(0, 0),
    mapTypeControl: false,
    panControl: false,
    scrollwheel: true,
    zoomControlOptions: {
        style: google.maps.ZoomControlStyle.SMALL,
        position: google.maps.ControlPosition.RIGHT_CENTER
    },
    styles: [{"featureType":"water","elementType":"all","stylers":[{"hue":"#e9ebed"},{"saturation":-78},{"lightness":67},{"visibility":"simplified"}]},{"featureType":"landscape","elementType":"all","stylers":[{"hue":"#ffffff"},{"saturation":-100},{"lightness":100},{"visibility":"simplified"}]},{"featureType":"road","elementType":"geometry","stylers":[{"hue":"#bbc0c4"},{"saturation":-93},{"lightness":31},{"visibility":"simplified"}]},{"featureType":"poi","elementType":"all","stylers":[{"hue":"#ffffff"},{"saturation":-100},{"lightness":100},{"visibility":"off"}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"hue":"#e9ebed"},{"saturation":-90},{"lightness":-8},{"visibility":"simplified"}]},{"featureType":"transit","elementType":"all","stylers":[{"hue":"#e9ebed"},{"saturation":10},{"lightness":69},{"visibility":"on"}]},{"featureType":"administrative.locality","elementType":"all","stylers":[{"hue":"#2c2e33"},{"saturation":7},{"lightness":19},{"visibility":"on"}]},{"featureType":"road","elementType":"labels","stylers":[{"hue":"#bbc0c4"},{"saturation":-93},{"lightness":31},{"visibility":"on"}]},{"featureType":"road.arterial","elementType":"labels","stylers":[{"hue":"#bbc0c4"},{"saturation":-93},{"lightness":-2},{"visibility":"simplified"}]}]
};
请在使用此代码之前,在中心选项中更新您的纬度和经度选项。

我注意到现在这个ACF谷歌地图表单上没有方向指示。有没有办法在这段代码中添加方向/路线选项? - user3559298
尝试使用Google地图方向服务来实现此功能。https://developers.google.com/maps/documentation/javascript/examples/directions-simple - Nehal

2
这是完整的JS代码,用于美化您的地图:
(function($) { /* * render_map * * This function will render a Google Map onto the selected jQuery element * * @type function * @date 8/11/2013 * @since 4.3.0 * * @param $el (jQuery element) * @return n/a */ function render_map( $el ) {  // Create an array of styles.  var styles =   [{"featureType":"administrative","elementType":"all","stylers":[{"visibility":"on"},{"lightness":33}]},{"featureType":"landscape","elementType":"all","stylers":[{"color":"#f2e5d4"}]},{"featureType":"poi.park","elementType":"geometry","stylers":[{"color":"#c5dac6"}]},{"featureType":"poi.park","elementType":"labels","stylers":[{"visibility":"on"},{"lightness":20}]},{"featureType":"road","elementType":"all","stylers":[{"lightness":20}]},{"featureType":"road.highway","elementType":"geometry","stylers":[{"color":"#c5c6c6"}]},{"featureType":"road.arterial","elementType":"geometry","stylers":[{"color":"#e4d7c6"}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"color":"#fbfaf7"}]},{"featureType":"water","elementType":"all","stylers":[{"visibility":"on"},{"color":"#acbcc9"}]}]  // as well as the name to be displayed on the map type control.  var styledMap = new google.maps.StyledMapType(styles, {name: "Styled Map"});  // var  var $markers = $el.find('.marker');  // vars  var args = {  zoom : 16,  center : new google.maps.LatLng(0, 0),  mapTypeControl  : true,  mapTypeControlOptions: {  mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'map_style']  },  zoomControl : true,  zoomControlOptions: {  style : google.maps.ZoomControlStyle.SMALL,  position : google.maps.ControlPosition.LEFT_CENTER  }  };  // create map   var map = new google.maps.Map( $el[0], args);  //Associate the styled map with the MapTypeId and set it to display.  map.mapTypes.set('map_style', styledMap);  map.setMapTypeId('map_style');  // add a markers reference  map.markers = [];  // add markers  $markers.each(function(){  add_marker( $(this), map );  });  // center map  center_map( map ); } /* * add_marker * * This function will add a marker to the selected Google Map * * @type function * @date 8/11/2013 * @since 4.3.0 * * @param $marker (jQuery element) * @param map (Google Map object) * @return n/a */ function add_marker( $marker, map ) {  // var  var latlng = new google.maps.LatLng( $marker.attr('data-lat'), $marker.attr('data-lng') );  // create marker  var marker = new google.maps.Marker({  position : latlng,  map : map  });  // add to array  map.markers.push( marker );  // if marker contains HTML, add it to an infoWindow  if( $marker.html() )  {  // create info window  var infowindow = new google.maps.InfoWindow({  content : $marker.html()  });  // show info window when marker is clicked  google.maps.event.addListener(marker, 'click', function() {  infowindow.open( map, marker );  });  } } /* * center_map * * This function will center the map, showing all markers attached to this map * * @type function * @date 8/11/2013 * @since 4.3.0 * * @param map (Google Map object) * @return n/a */ function center_map( map ) {  // vars  var bounds = new google.maps.LatLngBounds();  // loop through all markers and create bounds  $.each( map.markers, function( i, marker ){  var latlng = new google.maps.LatLng( marker.position.lat(), marker.position.lng() );  bounds.extend( latlng );  });  // only 1 marker?  if( map.markers.length == 1 )  {  // set center of map  map.setCenter( bounds.getCenter() );  map.setZoom( 16 );  }  else  {  // fit to bounds  map.fitBounds( bounds );  } } /* * document ready * * This function will render each map when the document is ready (page has loaded) * * @type function * @date 8/11/2013 * @since 5.0.0 * * @param n/a * @return n/a */ $(document).ready(function(){  $('.acf-map').each(function(){  render_map( $(this) );  }); }); })(jQuery);

您可以在这里选择不同的样式:https://snazzymaps.com/
更改
var styles = your code

享受吧!

1
你可以使用 https://snazzymaps.com/ 或谷歌 https://mapstyle.withgoogle.com。将你的样式代码放在 "styles:" 中。
function initMap( $el ) {

// Find marker elements within map.
var $markers = $el.find('.marker');

// Create gerenic map.
var mapArgs = {
    zoom        : $el.data('zoom') || 16,
    mapTypeId   : google.maps.MapTypeId.ROADMAP,
    styles: [{"featureType":"water","elementType":"all","stylers":[{"hue":"#e9ebed"},{"saturation":-78},{"lightness":67},{"visibility":"simplified"}]},{"featureType":"landscape","elementType":"all","stylers":[{"hue":"#ffffff"},{"saturation":-100},{"lightness":100},{"visibility":"simplified"}]},{"featureType":"road","elementType":"geometry","stylers":[{"hue":"#bbc0c4"},{"saturation":-93},{"lightness":31},{"visibility":"simplified"}]},{"featureType":"poi","elementType":"all","stylers":[{"hue":"#ffffff"},{"saturation":-100},{"lightness":100},{"visibility":"off"}]},{"featureType":"road.local","elementType":"geometry","stylers":[{"hue":"#e9ebed"},{"saturation":-90},{"lightness":-8},{"visibility":"simplified"}]},{"featureType":"transit","elementType":"all","stylers":[{"hue":"#e9ebed"},{"saturation":10},{"lightness":69},{"visibility":"on"}]},{"featureType":"administrative.locality","elementType":"all","stylers":[{"hue":"#2c2e33"},{"saturation":7},{"lightness":19},{"visibility":"on"}]},{"featureType":"road","elementType":"labels","stylers":[{"hue":"#bbc0c4"},{"saturation":-93},{"lightness":31},{"visibility":"on"}]},{"featureType":"road.arterial","elementType":"labels","stylers":[{"hue":"#bbc0c4"},{"saturation":-93},{"lightness":-2},{"visibility":"simplified"}]}]

};
var map = new google.maps.Map( $el[0], mapArgs );

// Add markers.
map.markers = [];
$markers.each(function(){
    initMarker( $(this), map );
});

// Center map based on markers.
centerMap( map );

// Return map instance.
return map;
}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接