My Favorite Tweets from the ESRI BPC / Devsummit - Day 2

by James Richards March 22, 2010

Presenting day 2 of my favorite tweets from the ESRI Business Partners Conference / Developer Summit:

  • There will be a new workspace type in 10 - "SQL Workspace" for direct SQL queries (spatial/nonspatial) #devsummit - via @eriknybergNET
  • ArcGIS.com will be a great resource for #maps #WebApps #mobileApps and tools. #esri_bpc - via @cmcginty
  • Like the features of ArcGIS.com that allow you to share with everyone or by limiting to groups. Very useful for info prep. #esri_bpc - via @cmcginty
  • @mraad shows usage of local Shapefiles, and collaborative web map editing environment. #webmap #devsummit - via @dafkobyte
  • ArcGIS JavaScript API 2.0 public beta made available today http://tinyurl.com/yez986j #ESRI #devsummit - via @SterlingGIS
  • AGS 10 (JavaScript 2.0 API) looks great- editing and temporal data display. Nice to see all those oil & gas well app samples. #devsummit - via @dropstones
  • New AGS 'FeatureServer' will allow for feature insert & update via REST & SOAP APIs #devsummit - via @TrippingTheBits
  • Android sdk will be next big push after Arc10 release #Esri_bpc #devsummit - via @mapitout
  • details being presented on new ESRI certification program #ESRI_BPC - via @DaleLoberger
  • You know you're a bit of a nerd when you pick up a Spock bobblehead. #devsummit #swag - via @adamjpfister

Tweets seemed to peter out around 4pm today. I guess everyone was hitting the bar by then...

For newcomers to the series, day 1 favorites are here.

Enjoy!

Tags: , , , ,

ESRI | Planet GS

My Favorite Tweets from the ESRI BPC / Devsummit - Day 1

by James Richards March 21, 2010

For those of you (like me) who couldn't make it to the ESRI Business Partner Conference / Developer Summit, you can follow the action on Twitter with the hash code #esri_bpc. You should also keep an eye on #devsummit since @dbouwman seems to have an aversion to typing underscores.

Here are a few of my favorite tweets from day 1:

  • #esri_bpc: Where ESRI decides when and how to eat its offspring. - via @howardbutler
  • 4min to have AGS set-up in the cloud? Wow! That should drop some billable hours... #esri_bpc - via @spanaut
  • ArcGIS in the Amazon cloud will work just like any other platform - except for the loading tons of data ;-) #esri_bpc - via @cmcginty
  • Dear ESRI, stop saying it takes 4 min to set up ArcGIS on AWS. #false #esri_bpc - via @cageyjames
  • Both an iPhone app for ArcGIS and an iPhone SDK will be available with ArcGIS 10 #ESRI_BPC - via @jeroenvanwinden
  • No support for legend /toc in rest api at 10... This is a GOOD thing! #devsummit - via @dbouwman
  • Just had demo of SQL Azure Spatial from Spatial Ed at #esri_bpc -- impressive. See Ed's blog http://bit.ly/bbNDoE + #FME just *works* on it - via @DaleAtSafe
  • @ESRI should be paying @dbouwman & @cageyjames some coin for their coverage of AGS10 at #DevSummit. <foil hat on> - via @tokumin
  • As compelling at this session is, I'm gonna install v10 beta on my laptop... #multi-tasking #DevSummit - via @dbouwman

Enjoy!

Tags: , , , ,

ESRI | Planet GS

ESRI Data and Maps 2009 Update Available

by James Richards October 21, 2009

ArcGIS 9.3.1 users current on maintenance can now request the ESRI Data & Maps 2009 Update here:

http://www.esri.com/data/data-maps/latest_update.html

Hope this helps!

Tags: ,

ESRI | Planet GS

Use Open Source FlashDevelop IDE with Google Maps API for Flash

by James Richards September 30, 2009

This thread on the Google Maps API for Flash Group Forum caught my attention yesterday:

The author outlines the steps required to get FlashDevelop up and running with the Google Maps API for Flash. FlashDevelop is a free and open source IDE with code completion for ActionScript, MXML, XML, and HTML.

image

It provides a compelling alternative to FlexBuilder and is worth a look. Please donate to the project if you use it!

I followed the steps outlined in the thread and everything worked as described. Here are a few extra details that might be useful:

Hope this helps!

Tags: , ,

ActionScript | Flex 3 | Google Maps | Planet GS

Implementing Model-View-ViewModel with the Bing Maps (Virtual Earth) Silverlight Map Control

by James Richards September 28, 2009

Overview

I’ve been looking at the Bing Maps (Virtual Earth) Silverlight Map Control and thinking about how to use it in a Silverlight application that implements the Model-View-ViewModel pattern. If you’re not familiar with this pattern, check out Shawn Wildermuth’s MSDN Article Model-View-ViewModel in Silverlight 2 Apps.

I’ve created a simple proof of concept application that implements the pattern with two Views: a Map based View and a Data Grid based View. The application displays a map of well known surf spots in the Los Angeles area, along with some basic information about each spot in an accompanying data grid.

image

More...

How To Create an ArcSDE Spatial View With an Outer Join

by James Richards July 16, 2009

Overview

ArcSDE Spatial Views are a useful tool for organizing information from multiple feature classes and geodatabase tables into a single “virtual feature class” or table at the database level. Similar to a database view, they allow administrators to join commonly used information so that the users do not need to perform the same actions repeatedly in a client (in this case, ArcMap).

Spatial Views are created with the “sdetable –o create_view …” command. When creating a Spatial View in this manner, the default join type is INNER JOIN. This fact cannot be altered via the command line syntax. INNER JOIN is the most restrictive join type and only records that match on both sides of the join will be in the resulting view. But once a default INNER JOIN Spatial View has been created, the join type can be changed after the fact either with the ALTER VIEW SQL statement, or through a database administration tool.

This article demonstrates how to create a Spatial View and then change the join type using SQL Server Management Studio. The same principles can be applied to other databases using whatever management tool you have available. More...

Tags: ,

ArcSDE | How To | Planet GS

How To: Display an ArcGIS Server Cached Tile Layer as a Custom Map Type with the Google Maps API for Flash

by James Richards July 06, 2009

Overview

This is the third post in a series where I discuss techniques for interacting with the ArcGIS Server REST API from within a Flex 3 application built with the Google Maps API for Flash. The first and second posts presented and refined an example that demonstrated how to stream features from ArcGIS Server and overlay them on top of Google Maps data. This post demonstrates how to display an ArcGIS Server cached tile layer as a custom map type with the Google Maps API for Flash.

Sample Application Concepts

The sample application works as follows:

  • The Google Maps API for Flash is embedded in a Flex 3 application.
  • A cached tile layer representing Land Base features for Portland, Oregon is served via an ArcGIS Server Map Service, accessible via ArcGIS Server’s REST API.
  • The cached tile layer appears as a custom map type in the Google Maps API for Flash User Interface.
  • The cached tile layer is displayed at zoom levels 0 - 19.

Here are a couple of screen shots of the sample application. The first shows the application with the custom “Land Base” map type selected. The second shows the application with the normal map type selected.

image

image

Live example is here, and source code is here. More...

Tags: , , ,

ArcGIS Server | Flex 3 | Google Maps | How To | Planet GS | REST

ArcGIS Server WebADF: Adjusting the Zoom Scale for Find Address Task Results

by James Richards July 02, 2009

Overview

When working with the Find Address Task in the ArcGIS Server WebADF, the default zoom scale that is displayed when the user zooms to a found address might not be what you want. This article discusses how to change it using the ZoomToPointFactor property. More...

Tags: , , ,

.NET | ArcGIS Server | How To | Planet GS | WebADF

Google Maps API for Flash and ArcGIS Server REST API Integration – Part 2

by James Richards June 15, 2009

Overview

This is the second post in a series where I discuss techniques for interacting with the ArcGIS Server REST API from within a Flex 3 application built with the Google Maps API for Flash. If you haven’t read the first post yet, I encourage you to do so now.

The first post presented a simple example that demonstrated how to stream features from ArcGIS Server and overlay them on top of Google Maps data. In this second post, we will reorganize the code for better reusability and add some geocoding functionality.

image

I’ll keep this post pretty brief and only cover the major points. Feel free to check out the live example and dive into the source code! More...

Tags: , , , ,

ArcGIS Server | Flex 3 | Google Maps | How To | Planet GS

Google Maps API for Flash and ArcGIS Server REST API Integration – Part 1

by James Richards May 12, 2009

Overview

This is the first post in a series where I will discuss techniques for interacting with the ArcGIS Server REST API from within a Flex 3 application built with the Google Maps API for Flash.

With this post, we start with a simple example that demonstrates how to stream features from ArcGIS Server and overlay them on top of Google Maps data. In this case, we will be working with parcel data.

This first example serves to demonstrate the basic concepts as succinctly as possible. In future posts, I will gradually refactor and improve upon the code to create reusable components. More...

Tags: , , , ,

ArcGIS Server | Flex 3 | Google Maps | How To | Planet GS

Powered by BlogEngine.NET 1.6.0.0
Theme by Mads Kristensen | Modified by Mooglegiant
Creative Commons License This work is licensed under a Creative Commons Attribution 3.0 United States License.

Welcome

James Richards

Hi, I'm James Richards and I'm a GIS Programmer and Consultant from Los Angeles, California. I mostly write about developing spatial software with ESRI and Microsoft technologies. I can be reached through the contact form, or through my company Artisan Global LLC. Thanks for stopping by, I hope you find something helpful here.

Subscribe by RSS   Follow me on Twitter   Connect on Facebook   View my profile on LinkedIn


Amazon Associates

Some of my posts may contain Amazon Associates links. I only include these links when it makes sense within the context of the article. If you are in the market for one of these items, please consider clicking on an affiliate link to make your purchase. You still get the same great deal from Amazon and it will help me pay for hosting and bandwidth. Thanks!