Search found 32 matches: markers

Return to advanced search

Re: DBF Repair Tools

... the internet but some may not be legitimate. Repairs might including repair of headers, removing non data characters, removing false end of file markers, etc. They also can re-align records are offset. Most errors are OS/disk caused, often from adding in sectors from the drive that don’t belong. ...
by TimStone
Thu Nov 09, 2023 4:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF Repair Tools
Replies: 7
Views: 775

Re: Imágenes en una DBF

... hardware effect, but after switching to RDBMS this problem is no longer there. These include problems with saving image data, how to find special markers in image files and other limitations. there will be a lot of time wasted just creating a program code. if the amount of data is small the problem ...
by Mulyadi
Thu Feb 18, 2021 3:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imágenes en una DBF
Replies: 24
Views: 1843

Re: calculates the distance between two towns

Thank you, Silvio.
But here the markers do not work.
Why do you have another bDraw block.
Would you be so kind to post yours.
Best regards,
Otto
by Otto
Mon Oct 19, 2020 9:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculates the distance between two towns
Replies: 19
Views: 2706

Re: calculates the distance between two towns

... the marker. I see that the array containing the marker is filled. But in my case, the marker is not painted. Best regards, Otto you not see any markers because your lat and long are wrong    local  dist :=0   local  lat1:=46.7528                         //Sillian   local  lon1:=12.4211   local ...
by Silvio.Falconi
Mon Oct 19, 2020 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculates the distance between two towns
Replies: 19
Views: 2706

Re: calculates the distance between two towns

Hello Silvio, Thank you. I see that there are values inside ::aMarkers. But there are no markers painted. Best regards, Otto xbrowse( ::aMarkers ) // draw the markers for ix:=1 to len(::aMarkers) x := ::GetTileNumber(::aMarkers[ix,1],::aMarkers[ix,2]) y := (x[2] - sy) ...
by Otto
Sun Oct 18, 2020 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculates the distance between two towns
Replies: 19
Views: 2706

Re: calculates the distance between two towns

Hello Antonino,
thank you so much for this source code.
All is working fine.
Silvio can you please show how you inserted the markers.
Best regards,
Otto
by Otto
Sat Oct 17, 2020 9:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculates the distance between two towns
Replies: 19
Views: 2706

Re: ¿Cómo puedo marcar varios puntos con Google Maps?

Karinha: Si te refieres a mostrar Markers, yo lo he hecho en php Te dejo un script tal vez te sirva <script>var map1, heatmap;function initMap1() {  map1 = new google.maps.Map(document.getElementById('map1'), ...
by cmsoft
Wed Oct 14, 2020 10:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo puedo marcar varios puntos con Google Maps?
Replies: 10
Views: 1973

Re: Get latitude and longitude

...    ::PaintTile(hDCMem,hDCBmp,left+ix*256,top+iy*256 ,sx+ix,sy+iy,::nZoom)        next    next   DeleteDC( hDCBmp )    // draw the markers    for ix:=1 to len(::aMarkers)         x := ::GetTileNumber(::aMarkers[ix,1],::aMarkers[ix,2])        y := ...
by AntoninoP
Wed Jan 16, 2019 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get latitude and longitude
Replies: 5
Views: 1864

OT If you do not want to use google maps .. look at this

... It allows developers without a GIS background to easily display tiled web maps hosted on a public server. Leaflet has support for tile layers, markers, popups, polygons and more, as well as user interactions such as mouse scroll-wheel zoom on the desktop and multi-touch zoom for iOS, Android ...
by Busmatic_wpb
Sun Jan 13, 2019 3:55 am
 
Forum: Utilities / Utilidades
Topic: OT If you do not want to use google maps .. look at this
Replies: 6
Views: 1630

Re: Get right to leff

Rao What are the < > markers .. should they be { codeblock .... } Also ... If I need to trap arrow down and oRs:EOF with latest version on Fwh I can do something like : :bKeyChar   := {|nKey,nFlags|, if(nKey = VK_DOWN, ...
by Rick Lipkin
Mon May 14, 2018 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get right to leff
Replies: 7
Views: 1029

Re: Plotting locations on Google Maps

Using your leaflet sample, what command line is adding the shading of the space between the markers ? I only want to display the markers, and not connect them. In my case, the connecting lines are all over the place, so it looks like a star, rather than just outlining ...
by TimStone
Wed Mar 22, 2017 12:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 14308

Re: Plotting locations on Google Maps

In your previous sample, You are using the address to put the markers.   AAdd( aDatas, VerMapa2( "28850", "Calle Manuel Sandoval", "1", "Torrejon de Ardoz", "Madrid", "Spain" ) ) ...
by vilian
Fri Mar 17, 2017 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 14308

Re: Plotting locations on Google Maps

Cnavarro,

You are creating the markers trough its address, isn't it ?
What i need to change for to do this trough lat/lng?
by vilian
Fri Mar 17, 2017 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 14308

Re: Plotting locations on Google Maps

Change images for markers https://s11.postimg.org/mnu50yyf7/leaflet2.png    For i := 1 to Len( aData )      cAppendStr += "L.marker( "      cAppendStr += "[ ...
by cnavarro
Thu Mar 16, 2017 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 14308

Re: Plotting locations on Google Maps

... come from over a period of time. Hidden deeply inside the Google documents, however, I found that you the API apparently only allows for 15 markers. That is strange because I see applications frequently that show far more than 15 points. I suppose I will have to work on that issue. The reason ...
by TimStone
Fri Mar 10, 2017 5:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 14308
Next

Return to advanced search

cron