Welcome, Guest
Please Login or Register.    Lost Password?

[SOLVED] Remove map list possible ?
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: [SOLVED] Remove map list possible ?
#24
[SOLVED] Remove map list possible ? 6 Months, 1 Week ago  
First of all, I have to say sorry about my very poor english !
My question is: Is there a way to remove the list of maps from this module ?
Image attached
Innocence
Fresh Nox
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2010/01/22 00:51 By Innocence.Reason: SOLVED
The administrator has disabled public write access.
 
#25
Re:Remove map list possible ? 6 Months, 1 Week ago  
Hi Innocence,

Yes it is possible, you can view the detail of how to do it here: Maps API V3 Controls

I will make the changes myself today and send you a copy, post it here and add it to the download repository. I may also just make it part of the parameter list so people can choose to turn it on or off, API v3 permitting of course as some things just are not available in Google's wisdom on code.

nomad
Administrator
Posts: 25
graph
User Offline Click here to see the profile of this user
Gender: Male Noxidsoft Location: Crows Nest, QLD Birthday: 11/01
Last Edit: 2010/01/20 15:21 By nomad.Reason: Change URL
The administrator has disabled public write access.
Kind Regards,

Noel M Dixon
www.noxidsoft.com
 
#26
Re:Remove map list possible ? 6 Months, 1 Week ago  
Thanks, Noel ! You`re good and fast!
In the meantime I`ve been trying the (non-free) Yoomaps module (tools.yootheme.com/extensions/yoomaps), that do have that maplist option.
You can see how (not definitely) I used the map: here (it`s a non-public, test-site)

It would be great if you can make the maplist option part of the parameters list ! Then your module would be offering almost the same that Yoomaps does, but freely for the Joomla! community. Great.

Thanks. I´ll be here waiting the improvements !
Paul.-
Innocence
Fresh Nox
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2010/01/21 23:25 By Innocence.Reason: removed a link (I don´t want it to be public)
The administrator has disabled public write access.
 
#27
Re:Remove map list possible ? 6 Months, 1 Week ago  
Hi Innocence,

Thanks for the advice and feedback, it always helps to improve the end-product, thanks from Australia matey.

Anyway, it turned out to be a five minute job, here is the file (below), I will get to work on adding it as a parameter, but this is a quick Google Maps API3 - Improved core change that will get you going for now. I should have the parameter changes done by the end of the day and posted to the non-Commercial repository as a new version

Thanks again for the heads-up, always appreciated, and I am sending you a late Christmas present...

[I have removed the file from here, as there is a better one now available, see post #29]
nomad
Administrator
Posts: 25
graph
User Offline Click here to see the profile of this user
Gender: Male Noxidsoft Location: Crows Nest, QLD Birthday: 11/01
Last Edit: 2010/01/22 00:32 By nomad.
The administrator has disabled public write access.
Kind Regards,

Noel M Dixon
www.noxidsoft.com
 
#29
Re:Remove map list possible ? 6 Months, 1 Week ago  
There is now a better Google Maps API3 - Improved that allows you to choose a custom icon for the Map Marker and an option in the parameters list (added below) to turn Map Controls On/Off.

* Building Address - Default: Toowoomba, QLD (No more Lat/Longs and API keys needed)
* Map Height - Default: 480
* Map Width - Default: 320
* Map Zoom Level (0-19) - Default: 12
* ---------------------------------------------
* Marker Icon (12 Choices) - Default: Home
* ---------------------------------------------
* Toggle Search (on/off) - Default: On
* Toggle Search Button - Default: Find
* Toggle Top or Bottom (Top/Bottom) - Default: Bottom
* Toggle Left / Middle / Right - Default: Middle
* ---------------------------------------------
* Toggle Map Controls - Default: On

http://noxidsoft.com/deploy/downloads/file/view/3/1.html
nomad
Administrator
Posts: 25
graph
User Offline Click here to see the profile of this user
Gender: Male Noxidsoft Location: Crows Nest, QLD Birthday: 11/01
Last Edit: 2010/01/20 23:33 By nomad.
The administrator has disabled public write access.
Kind Regards,

Noel M Dixon
www.noxidsoft.com
 
#31
Re:Remove map list possible ? 6 Months, 1 Week ago  
Stop, stop, stop. Above all things, I must say THANKS for every one of your attentions to me ! You have been very very kind and considerated about...everything ! I appreciate that so much =)
I installed this new version and it works like a charm !
As said before, I installed Yoomaps in the meantime. Now I uninstalled that and configured definitively your module. Here are the comparisons.

Yoomap:


Google Maps API3 - Improved and no map type:


And finally, I did one last addition: Added a parameter at the end, the "always necessary" 'Module class sufix':
Code:

<param name="moduleclass_sfx" type="text" default="-blank" label="Module Class Suffix" description="Module Class Suffix" />


And that´s all. Now it looks like this:


(uff, so many screencaps! hehe)
Innocence
Fresh Nox
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#32
Re:Remove map list possible ? 6 Months, 1 Week ago  
Hey,

That's a good idea, missed that one...

Ok, so I will add a Module Class Suffix to my modules from now on, wrist slapped

I am adding this to the end of the parameters list:

Code:

<params group="advanced">
<param name="moduleclass_sfx" type="text" default="" label="Module Class Suffix" description="A suffix to be applied to the css class of the module (table.moduletable), this allows individual module styling" />
</params>



And this to the php file where it is pertinent:

Code:

$params->get( 'moduleclass_sfx');


Then you can do this with the css file/s:

Code:

div#wrap_map {
text-align:left;
margin:0 auto;
}

/* if your Module Class Suffix is say _test in the parameter list (Advanced) then do the following as an example
div#wrap_map_test {
padding-top:200px;
}
*/

nomad
Administrator
Posts: 25
graph
User Offline Click here to see the profile of this user
Gender: Male Noxidsoft Location: Crows Nest, QLD Birthday: 11/01
Last Edit: 2010/01/22 04:39 By nomad.
The administrator has disabled public write access.
Kind Regards,

Noel M Dixon
www.noxidsoft.com
 
Go to topPage: 1