NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Richard I on December 16, 2023, 06:32:23 PM
-
Hello
In the NetMaps Example,
I have the FreeImage.dll installed in the app folder and have in the Global Extensions "activate Clarion FreeImage for the application"
I also have in Draw "Activate DrawImage" ticked ON
On Compile I get 7 errors all the same but in different CLW files-
line 1 Error(3): cif$fileopen cfilmgCt.inc The system cannot find the path specified.
(In Maps.clw
Maps_BC.clw
Maps_BC0.clw
Maps001.clw
Maps002.clw
Maps003.clw
Maps004.clw
All Right at the top)
???
Thanks
Richard
C11.1.13855
NT14.13
-
Have you installed Clarion Free Image in your Clarion?
-
Hi Bruce,
If you mean the template then yes, and is also in the app's global template list
but not sure what if anything I do with the now downloaded zipped library.
Thanks
Richard
-
If you installed the Clarion Free Image template then it would have installed
cfilmgCt.inc
have you got that file? and if so where?
-
Bruce
In the Clarion template Registry i have
Class Clarion Free Image V3.15.8
and Clarion FreeImage Control
In the Global Extensions of the Maps app I have
Activate Clarion FreeImage for this application.
However I am unable to find cfilmgCt.inc
On compile the build sequence does not return any error
Thanks
Richard
-
Its cfiImgCt.inc
-
Hi Bruce,
I have found the fie...
Location is C:\Clarion11.1\accessory\libsrc\win
Thanks
Thanks Alberto
Richard
-
and that path is in the RED for this app? And for this version?
So the problem has then gone away?
-
Bruce,
The example compiles now without error, but the Demo Markers Window displays the Markers from the Markers button, but the map when the Get Map button is selected from the coordinates entered does not display
The map area on the page is blank
Thanks
Richard
-
Richard I
You need to replace the Here credentials by yours, the example credentials does not work.
Go to WebServer/Extensions/NetWebServer/Settings/Defaults/Maps and change the here APP code or API key
Take a look too to the Global Nettalk extention, Option tab
It seams that the WebServer Defaults get over the Nettalk Options.
Keep only one of those.
Best option is to set it by code:
net.Authenticate('HereAppID', ,'HereApiKey')
Cheers
-
Thanks for replying Alberto,
Im no further ahead, trying to get a result in both maps examples
My questions here have become confuse between Web76 example and Netmaps ABC
So
All I am trying to do in the Maps76 example (which displays the street view ) is on the General Map, display a coordinate Marker icon on the map resulting from the entering of the coordinates and pushing the GO button
The Home button on the same Map displays an icon....?
At the moment the General Map appears centered on the coordinates entered.
Can I please have some guidance on this?
Thanks
Richard
NT14.14
-
Hi Richard,
I suggest attending the webinar today, or posting an example. It's hard to understand what you are asking.
Cheers
Bruce
-
Hi Bruce,
I am talking about the Nettalk Web Server Example Maps76
with nothing added , changed or removed.
There is a General Map option in it
If I add my own coordinates to the General Map latitude and longitude fields and press GO the street map appears with my location centered.
All Good
All I want, and cannot achieve ,is the display of a marker icon at that location......
I note the Home Button does display coordinates and map of the Capesoft Office, with a Marker icon
I can follow that through in the template, but cannot replicate on the GO button
I hope that clarifies...
Regards,
Richard
-
Hi Bruce,
Trying to help I changed web 76 example adding some lines to the Go button of the General Map.
I can add a marker but I cant remove a Marker.
May you please check it?
Nettalkcentral does not allow me to upload the rar or zip so I will email it to you.
Thanks
-
Sounds good Alberto
At this stage,are you able to share pease?
Thanks
Richard
-
https://www.dropbox.com/t/fUV4G4jDhi0T5yV0
-
Got It !
Many Thanks Alberto, for this post and those earlier.
Your help is very much appreciated.
Hopefully when Bruce replies to your post regarding the Marker removal,
he does so on the forum.
Best wishes for the festive season.
Regards
Richard
-
I could make it work!
Add this line to update the marker instead of deleting it (still impossible) and insert it again...
after my last line add
p_web.ntMap('GeneralMap','updateMarker','NewWp', p_web.GetLatLng(p_web.GetSessionValue('gm:Latitude')) , p_web.GetLatLng(p_web.GetSessionValue('gm:Longitude')) , p_web.WrapOptions(loc:options) , p_web.jsok('My Place', Net:HtmlOk*0+Net:UnsafeHtmlOk*0) , '1')
and it will do what you need.
-
Hi Alberto
Yes, it does thank you !
I also found an alternative way but not as elegant as your code.....
As a test and without adding another button ,I commented out all Server side code on the Home button,
and added do refresh::GeneralMap
The next challenge is to clear the latitude and longitude fields between views
Thanks again
Richard