Chris Clinton
Forum Replies Created
-
AuthorPosts
-
Bummer. Thanks. I guess Google doesn’t have all the updated city boundaries.
This reply has been marked as private.This reply has been marked as private.Yes, I only have the core plug-in installed. I didn’t feel the need to add the multi-location add-on since I was only planning to use one city.
My default city is Sun Prairie, WI.
Thanks.
Note: I added comments on another discussion related to this. Sorry for the added work in responding to two discussions.
Checking in as I am having the same issue.
I add an address within the city and it rejects it asking for me to add an address with in the default city. I can add the address which allows me to input but the pins end up in arbitrary locations on the map.
Do I need to pay for and add the multi-location add-on if I am still within the one city?I tested it and it’s not working.
Seeking suggestions on how to edit code.
Thanks, Guust.
I found this on Google’s developer site at https://developers.google.com/maps/documentation/javascript/trafficlayer#bicycling_layer.
function initialize() { var myLatlng = new google.maps.LatLng(42.3726399, -71.1096528); var mapOptions = { zoom: 14, center: myLatlng }; var map = new google.maps.Map( document.getElementById('map-canvas'), mapOptions); var bikeLayer = new google.maps.BicyclingLayer(); bikeLayer.setMap(map); } google.maps.event.addDomListener(window, 'load', initialize);
Looking at the code on the page you linked to, I am thinking I could modify it like this:
add_action('wp_footer' , 'geodir_set_custom_map_style'); function geodir_set_custom_map_style() { ?> <script> var geodir_custom_map_style =[ // Google Map Bicycling Layer Starts Here function initialize() { var map = new google.maps.Map( document.getElementById('map-canvas'), mapOptions); var bikeLayer = new google.maps.BicyclingLayer(); bikeLayer.setMap(map); } google.maps.event.addDomListener(window, 'load', initialize); // Google Map Bicycling Later End Here ] </script> <?php }
Your thoughts?
Thanks, Guust. I can definitely make that change and, as suggested, will wait to see what Paolo says.
Update:I reduced the size of the image and was able to upload the photo.
I checked my WordPress settings and have image upload limits set at 1024×1024. The second smaller image that successfully loaded was 1200×675. The original image was 5312×2988, I know…huge. It appears I was not limited by WPs image size limits as the successfuly upload image is larger than the set limits.
Does GD have a image size limit?
I have a similar issue using GD 1.2.3. However, mine says I have unlimited and I am unable to upload images. I checked in the PHP tables and was not able to find db geodir_pr. I assume that is because I am using the free version.
Could this be due to an image size issue?
Adding myself to this list.
According to the Place Attachment section of the Add Listing page, I am able to upload unlimited images. However, I am unable to get the software to take any images.
I click on the Select Files button.
I select my file in the window that popped up and select the Open button. Then nothing happens.Did I miss something?
During the initial install, I was able to see images that were adding with the sample locations. Those were removed and I am now trying to add my own locations with no success with images.
I am using:
GeoDirectory plugin 1.2.3 (free not paid)
Wordpress 4.0
Chrome 37.0.2062.120
Windows 7 Home Premium -
AuthorPosts