Re: map widget offline

2022-10-05 Thread Mark Wieder via use-livecode
On 10/5/22 13:53, Mike Kerner via use-livecode wrote: has anyone messed around with using the map widget offline? i was in a hurricane zone, last week, and over the weekend. there was a fair amount of offline time, when having maps loaded into my droid phone would have been useful. the offline ma

Re: Map Widget - how does it actually work?

2020-05-30 Thread Prothero-ELS via use-livecode
Graham, My demo stack was enhanced a lot by Hermann but I don’t know where it is, after a cursory search. He added a bunch of other capabilities, but I felt a quick look at the Google map docs would make it easy to add them. His expanded version may be in the examples repository. I didn’t check

Re: Map Widget - how does it actually work?

2020-05-29 Thread Graham Samuel via use-livecode
Bill, thanks for all this. I will study it today (it’s breakfast time in France as I write this). I did some internet searching to look at the underlying Apple Map system - which is used for the LC version of the Map widget for iOS - and its API. It’s rich and complex, so the widget just scratc

Re: Map Widget - how does it actually work?

2020-05-29 Thread prothero--- via use-livecode
Graham: If that doesn’t have everything, I have a zip file at: http://earthlearningsolutions.org/google-static-maps-demo/ William A. Prothero Santa Barbara, CA. 93105 http://earthlearningsolutions.org/ > On May 29, 2020, at 3:42 PM, Wil

Re: Map Widget - how does it actually work?

2020-05-29 Thread William Prothero via use-livecode
Graham: Here is a link to an example that I, with lots of help from Hermann created. Maybe it will be useful. All done in livecode, so it should work. Haven’t tried it since 2017, tho. Bill https://www.dropbox.com/s/kg5l80bi82u1sap/google-maps-demo.livecode?dl=0

Re: Map Widget - how does it actually work?

2020-05-26 Thread Graham Samuel via use-livecode
Thanks Bernard. I shall shelve my map utility until I notice the bug is fixed. Graham > On 26 May 2020, at 19:18, Niggemann, Bernd via use-livecode > wrote: > > Unfortunately polylines stoppt working in recent versions of LC > > https://quality.livecode.com/show_bug.cgi?id=22377 > > Kind reg

Re: Map Widget - how does it actually work?

2020-05-26 Thread Niggemann, Bernd via use-livecode
Unfortunately polylines stoppt working in recent versions of LC https://quality.livecode.com/show_bug.cgi?id=22377 Kind regards Bernd ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Map Widget - how does it actually work?

2020-05-26 Thread Graham Samuel via use-livecode
Thanks Alex - that’s solid gold! I might even be able to use the widget, though perhaps not for what I intended which was to draw a route consisting of a series of standard Lat-Lon coordinates, in other words a very large number of linked polylines. This is a tentative conclusion, so probably wr

Re: Map Widget - how does it actually work?

2020-05-25 Thread Mark Wieder via use-livecode
On 5/25/20 5:39 PM, Alex Tweedly via use-livecode wrote: The source code for all the widgets provided 'out of the box' is accessible so you can take those widgets as a base and improve and extended them as you need. Unfortunately, there is a non-obvious meaning to "out of the box" - what it

Re: Map Widget - how does it actually work?

2020-05-25 Thread Alex Tweedly via use-livecode
Well, the big advantage of widgets is that you can look at the source code. As it says in the Livecode Lesson ( http://lessons.livecode.com/m/4071/l/1005132-how-do-i-modify-a-livecode-widget ), What do you do if a LiveCode widget is missing a property or message you need? The source code fo

Re: Map Widget with Custom Marker

2018-12-18 Thread hh via use-livecode
> Brian M. wrote: > Try this one (similar concept) > http://forums.livecode.com/viewtopic.php?p=173867#p173867 This will not work. I just tried: The map widget updates in short intervals like a movie. Even a native button disappears. So the overlaying native object should also use a fast update li

Re: Map Widget with Custom Marker

2018-12-18 Thread Brian Milby via use-livecode
Strange.  Try this one (similar concept) http://forums.livecode.com/viewtopic.php?p=173867#p173867 Thanks, Brian On Dec 18, 2018, 4:15 PM -0600, Scott Rossi via use-livecode , wrote: > Thank you for the response, but getting a forum error 172729 doesn't > exist(?). > > On Tue, Dec 18, 2018 at 2:0

Re: Map Widget with Custom Marker

2018-12-18 Thread Scott Rossi via use-livecode
Thank you for the response, but getting a forum error 172729 doesn't exist(?). On Tue, Dec 18, 2018 at 2:09 PM Brian Milby via use-livecode < use-livecode@lists.runrev.com> wrote: > It is a native layer so it the only LC object that would work would be > another browser widget. There was a demo

Re: Map Widget with Custom Marker

2018-12-18 Thread Brian Milby via use-livecode
It is a native layer so it the only LC object that would work would be another browser widget.  There was a demo a while back of doing that. http://forums.livecode.com/viewtopic.php?p=172729#p172729 Thanks, Brian On Dec 18, 2018, 3:52 PM -0600, Scott Rossi via use-livecode , wrote: > Hi All: >

Re: map widget

2018-11-14 Thread hh via use-livecode
[Dictionary/map] set the region of widget "Map" to "55.9533,-3.1883, 10, 10" The region of a map widget is a tuple describing the map region currently displayed; the first two items are the centerCoordinates and the second two the span. set the centerCoordinates of widget "Map" to "55.9533,-3.18

Re: Map Widget Futures

2017-12-07 Thread Sannyasin Brahmanathaswami via use-livecode
Thanks Ali I'm clearly "out of my depth" here… after looking at the Google Maps model. looking at: com.google.android.gms.maps.model I think see why you are talking about overlays, as these comprise "model classes" GroundOverlay A ground overlay is an image that is fixed to a map. Gro

Re: Map Widget Futures

2017-12-07 Thread Ali Lloyd via use-livecode
On Thu, Dec 7, 2017 at 12:56 AM Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Ali Lloyd wrote: > > > ...make the map widget a lot more flexible on the > > objective-c side... > > iOS-only? > > -- > Richard Gaskin > Fourth World Systems > Software Design and Deve

Re: Map Widget Futures

2017-12-06 Thread Sannyasin Brahmanathaswami via use-livecode
Thanks for replying Ali I wasn't thinking of overlays, though that could be useful and would obviously be an early enhancment request. message path: Presumably "markers" are in the msg path… i.e. like buttons, and would respond to mouseup/down/touch. That would suffice for my V1 vision of use

Re: Map Widget Futures

2017-12-06 Thread Richard Gaskin via use-livecode
Ali Lloyd wrote: > ...make the map widget a lot more flexible on the > objective-c side... iOS-only? -- Richard Gaskin Fourth World Systems Software Design and Development for the Desktop, Mobile, and the Web ambassa...@f

Re: Map Widget Futures

2017-12-06 Thread Ali Lloyd via use-livecode
I'm not quite sure what you mean by 'a member of the msg path in "proper standing"' - the map widget just wraps a native view essentially. The map 'object' is only accessible through foreign handlers in LCB, but if it can be done natively then it can be done. In the first instance the widget will

Re: Map Widget"

2017-04-27 Thread William Prothero via use-livecode
Devin: Looking at the dictionary, it only works on iOS. I need Mac and Windows platforms, and iOS is good, but limited. But, this external looks like it would do what I want, as it is described. It looks like it will take map data and make and image which I could then modify as I want. Alas, no

Re: Map Widget"

2017-04-27 Thread William Prothero via use-livecode
Thanks for the info, Jonathon. I’ll post what I find out. Best, Bill P > On Apr 27, 2017, at 9:54 AM, Jonathan Lynch via use-livecode > wrote: > > Actually, I use tsnet for getting geocoding data from bing. Neither the put > URL command nor using a separate communication browser widget worked

Re: Map Widget"

2017-04-27 Thread Jonathan Lynch via use-livecode
Actually, I use tsnet for getting geocoding data from bing. Neither the put URL command nor using a separate communication browser widget worked for that. Sent from my iPhone > On Apr 27, 2017, at 12:41 PM, jonathandly...@gmail.com wrote: > > No - I don't even use google. I use bing maps, bing

Re: Map Widget"

2017-04-27 Thread Jonathan Lynch via use-livecode
No - I don't even use google. I use bing maps, bing geocoding, and webglearth for 3D. Google's TOS and reputation scares me. I just use the browser widget, no other plugin. Sent from my iPhone > On Apr 27, 2017, at 12:26 PM, William Prothero via use-livecode > wrote: > > Jonathon: > It look

Re: Map Widget"

2017-04-27 Thread Devin Asay via use-livecode
Bill, Have you checked the mergMK extension referred to in the post? To my knowledge the widget referred ton in the post has not yet been created. To take another tack—have you looked at the Google Static Map API? If you’re comfortable using RESTful API’s in LiveCode you can get a pretty servic

Re: Map Widget"

2017-04-27 Thread William Prothero via use-livecode
Jonathon: It looks like a Google Earth plugin is needed for Augmented Earth. True? Does that give you installation issues? Does the Map Widget behave well with plugins? Bill > On Apr 27, 2017, at 9:09 AM, Jonathan Lynch via use-livecode > wrote: > > I use maps in the browser widget extensively

Re: Map Widget"

2017-04-27 Thread Jonathan Lynch via use-livecode
I use maps in the browser widget extensively for Augmented Earth. It works great. You could hypothetically export the image data from the HTML canvas object, export the lat/lng boundaries, and present all of that through a LiveCode image object. Be prepared to do a bit of math, but I think it w

Re: Map Widget"

2017-04-27 Thread William Prothero via use-livecode
Folks: On another aspect of this question, was a Map Widget, advertised on the site I linked to below, ever created? https://livecode.com/map-widget-coming-to-livecode/ Bill William A. Prothero http://earthlearningsolution.org/ > >>> I fou

Re: Map Widget"

2017-04-27 Thread William Prothero via use-livecode
What I'm thinking about is a map that I can control location and magnification of a google map from livecode, do an image capture, and draw symbols on that capture. I would need to be able to recover the latitude and longitude of the displayed map boundaries. I remember some discussions about w

Re: Map Widget"

2017-04-27 Thread Bob Sneidar via use-livecode
I do not believe you can have a google map not in a browser. That is to say, you cannot have a google INTERACTIVE map. You can certainly drop screenshots in as graphics. Bob S > On Apr 26, 2017, at 19:31 , William Prothero via use-livecode > wrote: > > I found this link on the LC site. >