web-dev-qa-db-ja.com

すべての投稿を1つのGoogleマップに表示する方法はありますか。

すべての投稿を「ジオタグ」化して単一のGoogleマップに表示したいのですが。

9
alekone

これをプラグインなしで行うことができます、あなたは Google Maps API だけを必要とします。

1ページに20個以上のマーカーを配置する予定の場合は、住所ではなく座標を使用して投稿の位置を特定する必要があります。

住所から座標を保存するには、次の方法があります。

  1. 手動でサービスを利用する( this のようなもの)
  2. 投稿を作成または更新するときにWP adminからGoogle Mapsジオコーディングを呼び出します

2番目のオプションの実装方法は質問と厳密には関係がないため、回答を考慮に入れませんが、住所から座標を取得することがいかに簡単かを確認するには、この Maps API example を参照してください。

そのため、この回答では投稿にカスタムフィールド 'coords'があり、座標がカンマ区切りの2つの値の文字列として格納されていると仮定します。'38.897683,-77.03649'のようになります。

また、 'page-google-map.php'ファイルにページテンプレートが保存されているとします。

次のコードをfunctions.phpに入れます

add_action( 'wp_enqueue_scripts', 'enqueue_gmap' );

function enqueue_gmap() {
    // script goes only in the map page template
    if ( ! is_page_template('page-google-map.php') ) return;

    wp_register_script( 'google-maps-api', '//maps.google.com/maps/api/js?sensor=false', false, false );
    wp_register_script( 'posts_map', get_template_directory_uri().'/js/mygmap.js', false, false, true );
    wp_enqueue_script( 'google-maps-api' );
    wp_enqueue_script( 'posts_map' );

    // use a custom field on the map page to setup the zoom
    global $post;
    $zoom = (int) get_post_meta( $post->ID, 'map_zoom', true );
    if ( ! $zoom ) $zoom = 6;

    $map_data = array( 
        'markers' => array(), 
        'center'  => array( 41.890262, 12.492310 ), 
        'zoom'    => $zoom,
    );
    $lats  = array();
    $longs = array();

    // put here your query args
    $map_query = new WP_Query( array( 'posts_per_page' => -1, ) );

    // Loop
    if ( $map_query->have_posts() ) : 
        while( $map_query->have_posts() ) : $map_query->the_post();
            $meta_coords = get_post_meta( get_the_ID(), 'coords', true );
            if ( $meta_coords ) {
                $coords = array_map('floatval', array_map( 'trim', explode( ",", $meta_coords) ) );
                $title = get_the_title();
                $link  = sprintf('<a href="%s">%s</a>', get_permalink(), $title);
                $map_data['markers'][] = array(
                    'latlang' => $coords,
                    'title'   => $title,
                    'desc'    => '<h3 class="marker-title">'.$link.'</h3><div class="marker-desc">'.get_the_excerpt().'</div>',
                );
                $lats[]  = $coords[0];
                $longs[] = $coords[1];
            }
        endwhile;
        // auto calc map center
        if ( ! empty( $lats ) )
            $map_data['center'] = array( 
                ( max( $lats ) + min( $lats ) ) /2,
                ( max( $longs ) + min( $longs ) ) /2 
            );
    endif; // End Loop

    wp_reset_postdata;
    wp_localize_script( 'posts_map', 'map_data', $map_data );
}

ご覧のとおり、マップページテンプレートでは、エンキューしています

  • googleマップAPIスクリプト
  • テーマの 'js'サブフォルダにあるmygmap.jsというスクリプト

また、投稿をループして、配列$map_dataを作成し、wp_localize_scriptを使用してこの配列をページ内のjsに渡します。

さて、mygmap.jsは以下を含みます。

function map_initialize() {
    var map_div     = document.getElementById( 'map' );
        map_markers = map_data.markers,
        map_center  = new google.maps.LatLng( map_data.center[0], map_data.center[1] ),
        map_zoom    = Number( map_data.zoom ),
        map         = new google.maps.Map( document.getElementById( 'map' ), {
            zoom      : map_zoom,
            center    : map_center,
            mapTypeId : google.maps.MapTypeId.ROADMAP
        } );

    if ( map_markers.length ) {
        var infowindow = new google.maps.InfoWindow(),
            marker, 
            i;
        for ( i = 0; i < map_markers.length; i++ ) {  
            marker = new google.maps.Marker( {
                position : new google.maps.LatLng(
                    map_markers[i]['latlang'][0], 
                    map_markers[i]['latlang'][1]
                ),
                title    : map_markers[i]['title'],
                map      : map
            } );
            google.maps.event.addListener( marker, 'click', ( function( marker, i ) {
                return function() {
                    infowindow.setContent( map_markers[i]['desc'] );
                    infowindow.open( map, marker );
                }
            } )( marker, i ) );
        }
    }
};
google.maps.event.addDomListener( window, 'load', map_initialize );

JavascriptはWP関連ではありません。ここでは、map_data varの使用方法を示すためだけに掲載しています。私はjs開発者ではありませんし、コードは多かれ少なかれ完全に here から取られています

それで全部です。ページテンプレートを作成し、idが「map」のdivを挿入するだけです。

<div id="map" style="width:100%; height:100%"></div>

もちろんdivはcssでスタイル設定することができます。また、マーカーの情報ウィンドウもスタイル設定することができます。cssでは情報ウィンドウのタイトルのスタイル設定にh3.marker-titleを、コンテンツのスタイル設定にdiv.marker-descを使用します。

地図の中心は自動的に計算されるので、デフォルトのズームを変更する場合は、地図ページテンプレートに割り当てられたページにカスタムフィールド 'map_zoom'を配置する必要があります。

それが役に立てば幸い。

10
gmazzap