shemesh
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Map broken in CF7 v 3.6all – i do not find the time to continue developing this plugin.
I’ve gone so far but, sorry, seems like i will not be able to continue with it.
I’ll be happy to hand this plugin to someone with the right skills.Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google Mapstry changing the “minZoom: 2”. it might do the trick.
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Multiple markers?when you build your form try to add multiple map fields, have a look at the top image here for a hint about how to use.
i’m curious to know the result so let me know how it goes.
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Multiple markers?sorry, no multiple markers.
multiple maps… mmm… never tried that, but it think theoretically it should work.Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google Mapslukeblackmore – this seems to be a specific problem on your page, in jsfiddle the same code works flawlessly.
looking at the console of your page i see this message “Warning: you have included the Google Maps API multiple times on this page. This may cause unexpected errors.”
so check your code.Forum: Plugins
In reply to: [Contact Form 7 Map Field] Changing to google mapsyou are correct, look at this post for correct use.
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google Mapsp.s. another fix:
in order to see the markers on top of google maps add this right at the top of the same file:
<style type=”text/css”>
.leaflet-map-pane {
z-index: 2 !important;
}.leaflet-google-layer {
z-index: 1 !important;
}
</style>Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google Mapshere is the complete file on jsfiddle, simply copy/paste:
http://jsfiddle.net/X83Cx/Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google MapsOK, solution found!
seems to be some problem with the google maps plugin for Leaflet.here…
edit: contact-form-7-map-field/map-code-leaflet.html
add those 2 lines right under …/leaflet.js
<script src=”http://maps.google.com/maps/api/js?v=3.2&sensor=false”></script>
<script src=”http://matchingnotes.com/javascripts/leaflet-google.js”></script>than inside initmap() find: map.addLayer(mapTile);
replace it with:
var googleLayer = new L.Google(); map.addLayer(googleLayer);Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google Mapsdamn, you right.
i’ll look into this later.Forum: Plugins
In reply to: [Contact Form 7 Map Field] Google Mapsplease read this post
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Default viewplease read previous posts, this question has already been answered.
Forum: Plugins
In reply to: [Contact Form 7 Map Field] a specific locationplease read previous posts, this question has already been answered.
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Changing to google mapsvar ggl = new L.Google(‘HYBRID’);
Forum: Plugins
In reply to: [Contact Form 7 Map Field] Making Multiple Mapsoohh… never thought of that… i’ll need to take a look.