clean && documentation
This commit is contained in:
parent
2c5c71c587
commit
1fbb3486cf
10
README.md
Normal file
10
README.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Wordpress Plugin - Soundmap
|
||||||
|
|
||||||
|
Es una versión revisada del viejo plugin de Soinumapa desarrollado por Xavier Balderas.
|
||||||
|
|
||||||
|
## Configuración
|
||||||
|
|
||||||
|
* Descarga el plugin en la carpeta **wp-content/plugins**
|
||||||
|
* Activa el plugin en la sección **Plugins** de tu instancia de Wordpress
|
||||||
|
* Configura el area del mapa visualizada en **Ajustes > SoundMap**
|
||||||
|
* Crear los puntos necesarios en la sección **Markers**
|
@ -1,6 +1,7 @@
|
|||||||
#map_canvas {
|
#map_canvas {
|
||||||
height: 400px;
|
min-height: 400px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
background:#ccc;
|
||||||
}
|
}
|
||||||
#soundmap-attachments-list {
|
#soundmap-attachments-list {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
18
soundmap.php
18
soundmap.php
@ -136,6 +136,7 @@ if (!class_exists('Soundmap')){
|
|||||||
echo '<input type="text" name="soundmap_marker_lat" id="soundmap-marker-lat" value = "' . $soundmap_lat . '">';
|
echo '<input type="text" name="soundmap_marker_lat" id="soundmap-marker-lat" value = "' . $soundmap_lat . '">';
|
||||||
echo '<label for="soundmap-marker-lng">' . __('Longitud', 'soundmap') . '</label>';
|
echo '<label for="soundmap-marker-lng">' . __('Longitud', 'soundmap') . '</label>';
|
||||||
echo '<input type="text" name="soundmap_marker_lng" id="soundmap-marker-lng" value = "'. $soundmap_lng . '">';
|
echo '<input type="text" name="soundmap_marker_lng" id="soundmap-marker-lng" value = "'. $soundmap_lng . '">';
|
||||||
|
echo '<script></script>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function load_options(){
|
function load_options(){
|
||||||
@ -167,18 +168,8 @@ if (!class_exists('Soundmap')){
|
|||||||
}// admin_menu
|
}// admin_menu
|
||||||
|
|
||||||
function enqueue_map_scripts(){
|
function enqueue_map_scripts(){
|
||||||
/* Register the basic scripts needed for presenting the maps.
|
wp_enqueue_script('leafletjs','https://unpkg.com/leaflet@1.6.0/dist/leaflet.js',array(),'1.6.0',TRUE); // add Leaflet.js
|
||||||
- Google Maps
|
wp_enqueue_style('leafletcss',"https://unpkg.com/leaflet@1.6.0/dist/leaflet.css",array(),'1.6.0','all'); // add CSS Leaflet
|
||||||
- LeafletJS
|
|
||||||
- Leaflet Google Plugin
|
|
||||||
- LeafletCSS
|
|
||||||
*/
|
|
||||||
//wp_enqueue_script( 'google-maps', 'http://maps.google.com/maps/api/js?v=3.7&sensor=false' ); // Google Maps
|
|
||||||
//wp_enqueue_script('mapboxjs','https://api.mapbox.com/mapbox.js/v2.2.4/mapbox.js',array(),'2.2.4',TRUE); // add Leaflet.js
|
|
||||||
wp_enqueue_script('leafletjs','https://unpkg.com/leaflet@1.3.4/dist/leaflet.js',array(),'1.3.4',TRUE); // add Leaflet.js
|
|
||||||
//wp_enqueue_style('mapboxcss','https://api.mapbox.com/mapbox.js/v2.2.4/mapbox.css',array(),'2.2.4','all'); // add CSS Leaflet
|
|
||||||
wp_enqueue_style('leafletcss',"https://unpkg.com/leaflet@1.3.4/dist/leaflet.css",array(),'1.3.4','all'); // add CSS Leaflet
|
|
||||||
//wp_enqueue_script('leaflet-plugin-google', plugins_url('js/leaflet/plugins/Google.js', __FILE__), array('leafletjs', 'google-maps'), '0.7.2', TRUE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function wp_enqueue_scripts(){
|
function wp_enqueue_scripts(){
|
||||||
@ -205,8 +196,9 @@ if (!class_exists('Soundmap')){
|
|||||||
|
|
||||||
if (($hook == 'post-new.php' || $hook == 'post.php') && $current_screen->post_type == "marker"){
|
if (($hook == 'post-new.php' || $hook == 'post.php') && $current_screen->post_type == "marker"){
|
||||||
$this->enqueue_map_scripts();
|
$this->enqueue_map_scripts();
|
||||||
wp_enqueue_script('soundmap-add', plugins_url('js/soundmap.add.js', __FILE__), array(), '0.1', TRUE);
|
wp_enqueue_script('underscore');
|
||||||
wp_enqueue_style('soundmap-add-css', plugins_url('css/soundmap.add.css', __FILE__), array(), '0.1', 'all');
|
wp_enqueue_style('soundmap-add-css', plugins_url('css/soundmap.add.css', __FILE__), array(), '0.1', 'all');
|
||||||
|
wp_enqueue_script('soundmap-add', plugins_url('js/soundmap.add.js', __FILE__), array(), '0.1', TRUE);
|
||||||
|
|
||||||
$params = array();
|
$params = array();
|
||||||
$params['origin'] = $this->config['origin'];
|
$params['origin'] = $this->config['origin'];
|
||||||
|
Loading…
Reference in New Issue
Block a user