<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : butona ilk tıkladığımda konum verilerini alamıyor</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : butona ilk tıkladığımda konum verilerini alamıyor]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:31:21 +0000</pubDate>
  <lastBuildDate>Tue, 30 Jul 2024 14:36:16 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=767</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[butona ilk tıkladığımda konum verilerini alamıyor : Konum verisi android 14 s&#252;r&#252;ml&#252;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=767&amp;PID=1284#1284</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=171">OlgunAgac</a><br /><strong>Konu:</strong> 767<br /><strong>Gönderim Zamanı:</strong> 30&nbsp;Temmuz&nbsp;2024 Saat 14:36<br /><br />Konum verisi android 14 sürümlü telefonlarda alınamıyor.]]>
   </description>
   <pubDate>Tue, 30 Jul 2024 14:36:16 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=767&amp;PID=1284#1284</guid>
  </item> 
  <item>
   <title><![CDATA[butona ilk tıkladığımda konum verilerini alamıyor : //&#304;kinci t&#305;klad&#305;&#287;&#305;mda Dikey ve...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=767&amp;PID=1280#1280</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=191">Senol</a><br /><strong>Konu:</strong> 767<br /><strong>Gönderim Zamanı:</strong> 30&nbsp;Temmuz&nbsp;2024 Saat 14:08<br /><br /><div>//İkinci tıkladığımda Dikey ve yatay lokasyonlarıda veriyor apide çalışıyor ama ilk //tıkladığımda bana boş değer döndürüyor<br><br><br>var</div><div>&nbsp;form1:TCLForm;</div><div>&nbsp;btn1 : TclButton;</div><div>&nbsp;Latitude,Longitude : String;</div><div>&nbsp;clRest:TclRest;</div><div>&nbsp;qry:TCLJSONQuery;</div><div>&nbsp;qryString,ulke,sokak:String;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;void ulkeAl;</div><div>{</div><div>&nbsp; with qry do</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; ulke=FieldByName('country').AsString;</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp;&nbsp;</div><div>}</div><div>void sokakAl;</div><div>{</div><div>&nbsp; with qry do</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; sokak=FieldByName('street').AsString;</div><div>&nbsp; &nbsp; &nbsp;}</div><div>}</div><div>void onBtnClick;</div><div>{</div><div>&nbsp;Latitude=clGetStringTo(Clomosy.LocationValue,'|')</div><div>&nbsp;Longitude=clGetStringAfter(Clomosy.LocationValue,'|')</div><div>Latitude=clGetStringReplace(Latitude,',','.');</div><div>Longitude=clGetStringReplace(Longitude,',','.');</div><div>&nbsp;ShowMessage('Latitude value: '+Latitude);</div><div>&nbsp;ShowMessage('Longitude value: '+Longitude);</div><div>&nbsp;clRest=TCLRest.Create;</div><div>&nbsp; clRest.BaseURL = '<a href="https://api.geoapify.com/v1/geocode/reverse" target="_blank" rel="nofollow">https://api.geoapify.com/v1/geocode/reverse</a>?'+'lat='+Latitude+'&amp;lon='+Longitude+'&amp;apiKey=dd4bacb2b2f845c1ad9439f8f8ae9289';</div><div>&nbsp; &nbsp;clRest.Accept = 'application/json';</div><div>&nbsp; &nbsp;clRest.Method = rmGET;</div><div>&nbsp; &nbsp; clRest.Execute;</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;qry= Clomosy.ClDataSetFromJSON(clRest.Response);</div><div>&nbsp; &nbsp; with qry do</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; qryString=FieldByName('features').AsString;</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; &nbsp;qry= Clomosy.ClDataSetFromJSON(qryString);</div><div>&nbsp; &nbsp; &nbsp;with qry do</div><div>&nbsp; &nbsp; &nbsp;{</div><div>&nbsp; &nbsp; &nbsp; qryString=FieldByName('properties').AsString;</div><div>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; &nbsp; &nbsp;qry= Clomosy.ClDataSetFromJSON(qryString);</div><div>&nbsp; &nbsp; &nbsp;sokakAl;</div><div>&nbsp; &nbsp; &nbsp;ulkeAl;</div><div>&nbsp; &nbsp; &nbsp; ShowMessage(ulke + '/'+ sokak);</div><div>}</div><div><br></div><div>{</div><div>&nbsp;form1 = TCLForm.Create(Self);</div><div>&nbsp;btn1 = form1.AddNewButton(form1,'btn1','Erişim verilerini al');</div><div>&nbsp;btn1.Width = 150;</div><div>&nbsp;form1.AddNewEvent(btn1,tbeOnClick,'onBtnClick');</div><div>&nbsp;form1.Run;</div><div>}</div>]]>
   </description>
   <pubDate>Tue, 30 Jul 2024 14:08:22 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=767&amp;PID=1280#1280</guid>
  </item> 
 </channel>
</rss>