From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.31.173.131 with SMTP id w125mr9966765vke.8.1450577782072; Sat, 19 Dec 2015 18:16:22 -0800 (PST) X-Received: by 10.182.112.135 with SMTP id iq7mr106215obb.10.1450577782014; Sat, 19 Dec 2015 18:16:22 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!peer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!g67no1824329qgd.1!news-out.google.com!f6ni28054igq.0!nntp.google.com!mv3no18404018igc.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 19 Dec 2015 18:16:21 -0800 (PST) In-Reply-To: <02cc927d-a578-4e06-9706-efeb1db99e40@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=50.138.108.113; posting-account=yiWntAoAAAC1KqC_shmxJYv07B9l6LNU NNTP-Posting-Host: 50.138.108.113 References: <02cc927d-a578-4e06-9706-efeb1db99e40@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <7bac83ed-0d6f-4d2d-9e9a-0cd659d1d80a@googlegroups.com> Subject: =?ISO-8859-1?B?UmU6IEFkYSBvbiBpT1MgP6BPciBTd2lmdC4uLg==?= From: David Botton Injection-Date: Sun, 20 Dec 2015 02:16:22 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Received-Bytes: 2271 X-Received-Body-CRC: 2008061485 Xref: news.eternal-september.org comp.lang.ada:28827 Date: 2015-12-19T18:16:21-08:00 List-Id: > I need to develop a navigation tool on an iPad It will have to be an app with a server side, but using Gnoga it is possibl= e. > - Is it possible to have an Ada compiler for iOS? Not currently realistic. The best we can hope for when it comes to GCC/GNAT= is someone redoing the work Marcus did and releasing as GMGPL the runtime = for .NET then you can use the many tools to convert .NET to either real iOS= code or to ASM.js If that ever happens I'll update Gnoga to work client side as well for ASM.= js / .NET (A simple thing) There is little point in trying to go direct to iOS with GCC/GNAT > - Is it possible to use GNOGA for drawing instruments, like a compass, on= an iPad screen ? Yes What you do is create an application using PhoneGAP using a Gnoga boot.html= pointing back to your Gnoga app's server IP/URL. Then you can use HTML5 Ca= nvas or any other HTML/JS method to do the drawing. The PhoneGAP JS API wil= l give you access to the location data, etc. which you can access from the = server side using Gnoga. David Botton