NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: oggy on July 08, 2014, 09:02:34 AM
-
Hi guys, anyone with some screenshots of geotagging examples to show?
Recently, I started one big application, and now I am tasked to do thad (geotagging), of some kind?
Any screenshot how it looks like in example,
Regards Oggy
-
Hi Oggy,
A good starting point would be the Maps(76) example.
Peter
-
The Problem is that I have Nettlak 7, so I need some screenshots from that example 76. If you folks with nettalk 8 can show some screenshots of that example, maybe, just, maybe, my financial director will be convinced to purchase Nettalk 8. But first I must see some example-screenshot what its look like...
BTW, do any of you try to implement Esri maps in application?
Regards, Oggy
-
check out the NT8 release webinar - Bruce spends a bit of time demoing the options which is probably better than a screenshot. You might even see some other new features to justify the upgrade.
-
Webinar 253 (Nettalk 8r elease) removed.... :(
-
Link to
Works ok.
http://clarionlive.wikispaces.com/Webinar+253
or follow the link from
http://www.capesoft.com/webinars.htm
Regards
Louis
-
Thanks for link...
I just started from a scratch, day one... Using java script and Nettalk 7 standard form-browse concept, I did this. (screen in attachment)
Now, I need experienced users to look and show me is it this concept on good trail, before I buy Nettalk 8.
Regards, Ozren
[attachment deleted by admin]
-
Hi Oggy,
you can obviously add maps in NetTalk 7 - it's just code. All it costs is your time (at ?$ per hour...)
I'm not 100% sure of your last question though. It's a nice screen-shot, but it's not clear what functionality you are hoping for.
Incidentally NT8 does not (yet) do GeoTagging. GeoTagging is the idea of turning a Lat/Long address into a _Street_ address. There are API's to do this though, and I know a couple folk have done that in NT8.
NT includes mapping (including the use of Maps from ESRI as well as numerous other providers.) It then integrates those maps with your app, making it easy to mix your data onto the map, add records via the map and so on.
Cheers
Bruce
-
Hi Bruce.
That is exactly what I try to achieve... I need some data to put onto/into map from various providers with some graphical symbols. If NT8 can do that, I know what to do... ;)
I will buy NT8, but, my financial stuff need to see some screenshots of examples before buying... That is why I am annoying you for some screenshots... ;)
Regards, Oggy
-
Ozren,
maybe you mean something like this?
http://downloads.odata.de/GooMaps.zip req. NT and FE
PS: its in german :-) ...... just type an address in the top entry, like 42. St, New York or Tower Bridge, London.
hth
Wolfgang
-
Wolfgang,
I like what you did there. I do something very similar in my apps. I also use Google to get my Lat / Lon and pass them to xFiles.
Very nice!
Don
-
Nice one Wolfgang... This is what I try to achieve, part of it... I start my application and I use java script to show-handle maps from ESRI, not Google maps...
Primary use of application will be to use ArcGIS for server, so I must figure how to get data, which is not such a problem, and put data back to gis server. And that is the problem...
Soon I will post some of my scripts and screenshots what I have done
Regards, Oggy
-
First stage, using example script to create basic map:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--The viewport meta tag is used to improve the presentation and behavior of the samples
on iOS devices-->
<meta name="viewport" content="initial-scale=, maximum-scale=1,user-scalable=no"/>
<title></title>
<link rel="stylesheet" href="http://js.arcgis.com/3.9/js/dojo/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://js.arcgis.com/3.9/js/esri/css/esri.css">
<style>
html, body { height: 110%; width: 100%; margin: 0; padding: 0; }
#map{
padding:0;
}
</style>
<script src="http://js.arcgis.com/3.9/"></script>
<script>
var map;
require([
"esri/map", "esri/dijit/BasemapGallery", "esri/arcgis/utils",
"dojo/parser",
"dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dijit/TitlePane",
"dojo/domReady!"
], function(
Map, BasemapGallery, arcgisUtils,
parser
) {
/* Parser for now disabled, because of problem in Nettalk form */
/* parser.parse(); */
map = new Map("map", {
basemap: "topo",
center: [16.83333, 45.902345],
zoom: 13
});
var basemapGallery = new BasemapGallery({
showArcGISBasemaps: true,
map: map
}, "basemapGallery");
basemapGallery.startup();
basemapGallery.on("error", function(msg) {
console.log("basemap gallery error: ", msg);
});
});
</script>
</head>
<body class="claro">
<div data-dojo-type="dijit/layout/BorderContainer"
data-dojo-props="design:'headline', gutters:true "
style="width:90%;height:90%;margin:0;">
<div id="map"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'center'"
style="padding:0;">
<div style="position:absolute; right:20px; bottom:1px; z-Index:50;">
<div data-dojo-type="dijit/TitlePane"
data-dojo-props="title:'Promijeni layer', closable:false, open:false">
<div data-dojo-type="dijit/layout/ContentPane" style="width:450px; height:350px; overflow:auto;">
<div id="basemapGallery" ></div></div>
</div>
</div>
</div>
</div>
</body>
</html>
Second stage will be to put some markers onto map and grabbing information from the pointer
[attachment deleted by admin]