OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Add objects to the map by coordinates (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 1

Add objects to the map by coordinates

raykom2010 (Visitor)
Posts: 0
graphgraph
User Offline
Add objects to the map by coordinates 5 Years, 3 Months ago
Karma: 0  
Hello. I want to use your component for the sale of land and country houses. These objects may not have an official address, which is understandable for google maps. The establishment of cards of such objects is difficult because you have to manually indicate the position on the map. Is it possible to add objects to the map not by address, but by coordinates? I erased the code - you have both latitude and longitude in the code and all the functions of their use. But inputs are absent in the interface. Tell me a solution how to solve this problem. I will be very grateful. Thank. As a thank you, I can organize a site for the sale and support of your component in Russia. The market is familiar, marketing policies are clear. Really looking forward to the answer.
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8366
graph
User Offline Click here to see the profile of this user
Re:Add objects to the map by coordinates 5 Years, 3 Months ago
Karma: 102  
Hello

First of all In Real Estate manager(ordasoft.com/Real-Estate-Manager-Software-Joomla.html) - you may add object to map, if you do click on map. You need select your location and click on map.

We special hide "Latitude" and "Longitude" from end users, very less who may correctly add this.
But you may show this in your "house edit form"

Please in file
{your site}/administrator/components/com_realestatemanager/realestatemanager.html.php

Find code:
Code:

                <input class="inputbox" type="text"
                    id="hlatitude" style="display:none" name="hlatitude"
                    size="20" value="<?php echo $row->hlatitude; ?>" readonly/>



and replace to
Code:

<input class="inputbox" type="text"
                    id="hlatitude"  name="hlatitude"
                    size="20" value="<?php echo $row->hlatitude; ?>" />




Find code:
Code:

                        <input class="inputbox" type="text" id="hlongitude"
                         style="display:none" name="hlongitude" size="20"
                         value="<?php echo $row->hlongitude; ?>" readonly/>



and replace to
Code:

                        <input class="inputbox" type="text" id="hlongitude"
                          name="hlongitude" size="20"
                         value="<?php echo $row->hlongitude; ?>" />



Please backup this file first

Regards
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
raykom2010 (Visitor)
Posts: 0
graphgraph
User Offline
Re:Add objects to the map by coordinates 5 Years, 3 Months ago
Karma: 0  
Yes, everything works. Thank you very much.
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8366
graph
User Offline Click here to see the profile of this user
Re:Add objects to the map by coordinates 5 Years, 2 Months ago
Karma: 102  
You are welcome

Regards
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»