-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazur-postmap.php
158 lines (128 loc) · 4.67 KB
/
azur-postmap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
/*
Plugin Name: Azur Post Map
Plugin URI: https://github.com/sinky/azur-postmap
Version: 1.0
Author: Marco Krage
Author URI: https://my-azur.de
Description: Show a map with geotagged posts. All, by category or by radius.
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
//error_reporting(E_ALL);
//ini_set('display_errors', 1);
function azur_postmap_scripts() {
wp_register_style('leaflet', '//cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css');
wp_register_script('leaflet-js', '//cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.js', array(), 0, true);
wp_register_script('azur-postmap', plugins_url('azur-postmap.js', __FILE__ ), array(), 0, true);
}
add_action('wp_enqueue_scripts', 'azur_postmap_scripts');
function azur_postmap_footer_script() { ?>
<script>
var azurPostMaps = [];
document.querySelectorAll('[data-azur-postmap]').forEach(function(elm){
var id = elm.dataset.azurPostmap
azurPostMaps.push(_azurPostMap(elm, azurPostMapData[id]))
})
<?php do_action('azur_postmap_user_script'); ?>
</script>
<?php
}
function azur_postmap_shortcode( $atts ) {
$options = shortcode_atts( array(
'category_name' => '',
'tag' => '',
'center' => '',
'radius' => '',
'bbox' => '' // http://bboxfinder.com // Coordinate Format: Lng/Lat (GDAL)
), $atts );
$posts = get_posts(array(
'numberposts' => -1,
'category_name' => $options['category_name'],
'tag' => $options['tag']
));
wp_enqueue_style('leaflet');
wp_enqueue_script('leaflet-js');
wp_enqueue_script('azur-postmap');
add_action('wp_footer', 'azur_postmap_footer_script', 99);
$bbox = null;
if($options['center'] && $options['radius']) {
list($searchLat,$searchLng) = explode(',', $options['center']);
$bbox = getBoundingBox($searchLat, $searchLng, $options['radius']);
}elseif($options['bbox']){
list($boundsSWlong,$boundsSWlat,$boundsNElong,$boundsNElat) = explode(',', $options['bbox']);
$bbox = array(
"sw" => array("lat" => $boundsSWlat, "lon" => $boundsSWlong),
"ne" => array("lat" => $boundsNElat, "lon" => $boundsNElong)
);
}
$data = array();
foreach($posts as $post) {
$id = $post->ID;
$lat = get_post_meta($post->ID, 'geo_latitude', true);
$lng = get_post_meta($post->ID, 'geo_longitude', true);
if(empty($lat) || empty($lng)) {
continue;
}
if($bbox != null) {
$checkInBounds = inBounds($lat, $lng, $bbox['ne']['lat'], $bbox['ne']['lon'], $bbox['sw']['lat'], $bbox['sw']['lon']);
if(!$checkInBounds) { continue; }
}
$e = new StdClass();
$e->id = $id;
$e->permalink = get_permalink($id);
$e->lat = $lat;
$e->lng = $lng;
$e->post_title = $post->post_title;
$e->post_content = $post->post_excerpt;
if(empty(trim($e->post_content))) {
$post_content = $post->post_content;
$post_content = preg_replace("/(\r|\n)$/", "", $post_content);
$post_content = strip_tags($post_content);
$post_content = substr($post_content, 0, 300);
$e->post_content = $post_content;
if(strlen($post->post_content) >= 300) {
$e->post_content .= " …";
}
if(empty(trim($e->post_content))) {
$e->post_content = "Kein Text Auszug vorhanden.";
}
}
$e->post_date = date("d.m.Y", strtotime($post->post_date));
$e->post_tags = implode(',', wp_get_post_tags($id, array('fields'=>'names')) );
$data[] = $e;
}
$json = json_encode($data);
$uniqid = uniqid();
$output = "<script>if (typeof window.azurPostMapData === 'undefined') {window.azurPostMapData = []}; window.azurPostMapData['".$uniqid."'] = ".$json.";</script>";
$output .= "<div id='azur-postmap' class='azur-postmap' data-azur-postmap='".$uniqid."'>Lade Postmap ...</div>";
return $output;
}
add_shortcode('azur-postmap', 'azur_postmap_shortcode');
function getBoundingBox($lat, $lon, $radius) {
$earth_radius = 6371.01;
$maxLat = $lat + rad2deg($radius/$earth_radius);
$minLat = $lat - rad2deg($radius/$earth_radius);
$maxLon = $lon + rad2deg($radius/$earth_radius/cos(deg2rad($lat)));
$minLon = $lon - rad2deg($radius/$earth_radius/cos(deg2rad($lat)));
return array(
"center" => array("lat" => $lat, "lon" => $lon),
"nw" => array("lat" => $maxLat, "lon" => $minLon),
"ne" => array("lat" => $maxLat, "lon" => $maxLon),
"sw" => array("lat" => $minLat, "lon" => $minLon),
"se" => array("lat" => $minLat, "lon" => $maxLon)
);
}
function inBounds($pointLat, $pointLong, $boundsNElat, $boundsNElong, $boundsSWlat, $boundsSWlong) {
$eastBound = $pointLong < $boundsNElong;
$westBound = $pointLong > $boundsSWlong;
if ($boundsNElong < $boundsSWlong) {
$inLong = $eastBound || $westBound;
} else {
$inLong = $eastBound && $westBound;
}
$inLat = $pointLat > $boundsSWlat && $pointLat < $boundsNElat;
return $inLat && $inLong;
}