iPhone In App Social Networking Wireframes

by James Richards June 14, 2010

Over the weekend I was working on an iPhone app design for a personal project. The design includes a series of screens for cross promoting the app through social networking by sending an email, posting on Twitter, or sharing on Facebook.

This is a pretty common scenario in iPhone apps, so I decided to pull out the social networking screens and share them in a reusable package. I used Balsamiq Mockups to create the wireframes, so it was easy to share them on Balsamiq’s Mockups to Go site. If your doing an iPhone design in Mockups that requires social networking integration, you can download the mockups from here.

iPhone In App Social Networking

Tags: , , , ,

iPhone | Mobile | Balsamiq Mockups

ESRI ArcGIS iPhone API – Class Breaks Renderer Sample

by James Richards June 04, 2010

Introduction

Here is a quick sample demonstrating the use of a Class Breaks Renderer in the ESRI ArcGIS iPhone API. The sample queries an ArcGIS Server Map Service for cities in California and renders them as graphics based on the population. Here’s a screenshot of the app running in the simulator.

ClassBreaks

Click here to download the source code from this article.

More...

Tags: , , ,

ArcGIS Server | ESRI | iPhone | Mobile

ESRI ArcGIS iPhone API – Integration with Core Location

by James Richards May 14, 2010

Introduction

Last week I started to familiarize myself with the ESRI ArcGIS iPhone API public beta and I blogged about my First Impressions. This week I had a chance to play around with it some more and I decided to investigate working with location. I enhanced my sample application from last week to include a Location button, which when pressed zooms the map to the current location and displays a custom push pin graphic.

Screen1     Screen2

Click here to download the source code from this article.

There are two ways you can work with location while writing an app with ESRI’s iPhone API:

ESRI’s AGSGPS class provides a convenient wrapper around Core Location if you don’t want (or need) to delve into the details of the framework.

More...

Tags: , , , ,

ArcGIS Server | ESRI | iPhone | Mobile

ESRI ArcGIS iPhone API – First Impressions

by James Richards May 04, 2010

The ESRI ArcGIS iPhone API was released to public beta today. Jeff Shaner blogged and tweeted about it this morning.

I downloaded the SDK this afternoon and took it for a spin. My first impressions are very favorable. Although the documentation is still a bit sparse in a few places, that’s to be expected for a first beta.

The SDK is another client API for consuming ArcGIS Server REST endpoints, and it works with versions 9.3.1 and 10.0. If you have worked with any of the other client APIs, you will already be familiar with the basic paradigm of interaction with the various REST services offered by ArcGIS Server.

The SDK Concepts Documentation provides a basic overview of the technology and includes a number of brief walkthroughs as well as short code samples illustrating how to perform common programming tasks with the API.

The installation also includes six sample applications which are installed into your ~/Library/SDKs/Samples folder. Studying these sample apps is a good way to jumpstart your familiarity with the API.

But enough talk already, let’s see some code! More...

Tags: , , ,

ArcGIS Server | ESRI | Mobile | iPhone

Continuously Display Lat Lon Coordinates in a Bing Maps Silverlight App

by James Richards April 12, 2010

Overview

This article presents code and a brief tutorial showing how to continuously display the real world latitude / longitude coordinates of the mouse location in a Bing Maps Silverlight Application.

You can view a live sample or download the source code.

Tutorial

Create a new Bing Maps Silverlight application called LatLonApp using the steps shown in my previous Getting Started with the Bing Maps Silverlight control post.

Open the solution in Blend 3, and open the MainPage.xaml user control.

Select the Map control in the Objects and Timeline Window

image

In the upper right hand corner, enter the name “MyMap” for the Name property in the Properties window and hit return.

image

Select the TextBlock tool in the toolbar, and click and drag on the artboard to add new text block to the project.

image

Position the text block in the lower right, just above the scale bar. Change the name the text block to “Coords”.

In the Properties window, set the Text property to “Lat, Lon” and the justification to Right.

image

image

Ensure that the Horizontal Alignment is set to Right, the Vertical Alignment is set to Bottom, the Left and Top Margins are set to 0 and the Right and Bottom margins are set to 5 and 57 respectively.

image

Notice how the text on the scale bar has a 1 pixel white drop shadow. Next, we’ll duplicate that effect for the Coords text block.

Click on the Assets tab in the upper left, and then select the Effects category. This will display any effects you have registered with Blend on the right hand side of the split window.

image

Drag the DropShadowEffect onto the Coords text block.

image

This will add the effect to the text block, select the effect in the Objects and Timeline window, and display the effect’s properties in the Properties window on the right.

Change the Blur Radius to 1, the Color to White, and the Shadow Depth to 1.

image

Now the text block is styled in the same way as the scale bar text.

image

Select the Map in the Objects and Timeline window or on the artboard and click the Events icon in the upper right hand corner of the Properties window.

image

Find the MouseMove event, enter MyMap_MouseMove and hit enter.

image

This will create a new event handler and open up the code behind file MainPage.xaml.cs.

image

At this point you can either code up the event in Blend, or switch back to Visual Studio. I prefer to switch back to Visual Studio for the Intellisense. Note that you could also have switch back earlier and created the event in Visual Studio as well.

Make sure that all of the files are saved before switching back by choosing Save All from the File menu or pressing Ctrl+Shift+S.

When you switch back to Visual Studio it will notice that the files have been modified and present a dialog asking if you want to reload the file(s). Click Yes to All.

image

Open the MainPage.xaml.cs and add a using statement for the Microsoft.Maps.MapControl namespace.

Add the following code to the MyMap_MouseMove event.

private void MyMap_MouseMove(object sender, System.Windows.Input.MouseEventArgs e)
{
    Point viewportPoint = e.GetPosition(MyMap);
    Location location;
    if (MyMap.TryViewportPointToLocation(viewportPoint, out location))
    {
        Coords.Text = String.Format("Lat: {0:f4}, Lon: {1:f4}",
            location.Latitude, location.Longitude);
    }
}

This code gets the current mouse position in Viewport coordinates and transforms the Point to a latitude longitude Location. If the transformation is successful, the latitude and longitude are rounded to 4 decimal places and the Coords text block is update to display the coordinate.

Press F5 to compile and run the project. As you move the mouse around the map, the coordinates are displayed above the scale bar.

image

Wrapup

In this article you learned how to continuously display the real world latitude / longitude coordinates of the mouse location in a Bing Maps Silverlight Application.

You can view a live sample of the application or download the source code.

Additional Resources

Tags: , , ,

Bing Maps | Silverlight

How will Apple’s New Developer Agreement Affect iPhone Mapping Apps?

by James Richards April 09, 2010

The Twitterverse and Blogosphere are all abuzz with yesterday’s news that Apple has apparently changed terms of its Developer Agreement to explicitly ban apps created with cross-compilers. This got me thinking about how this change might affect those of us developing mapping apps for the iPhone (and iPad).

The change that most people are talking about is in section 3.3.1 which now reads:

3.3.1 — Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs. Applications must be originally written in Objective-C, C, C++, or JavaScript as executed by the iPhone OS WebKit engine, and only code written in C, C++, and Objective-C may compile and directly link against the Documented APIs (e.g., Applications that link to Documented APIs through an intermediary translation or compatibility layer or tool are prohibited).

I have to wonder if ESRI’s iPhone SDK or CloudMade’s iPhone SDK or any of the location toolkits such as SimpleGeo’s iPhone SDK were “originally written” in one of the approved languages without the aid of a cross-compiler. If not, apps built with these tools could be banned.

As an example, the linked SimpleGeo page states that “The SGClient is a basic Objective-C wrapper around SimpleGeo's OAuth API.” What is SimpleGeo’s OAuth API and does it meet these new requirements?

I’d like to know from some of these vendors whether or not their SDKs meet Apple’s new requirements.

But even more disturbing is this language in section 3.3.2:

“An Application may not itself install or launch other executable code by any means, including without limitation through the use of a plug-in architecture, calling other frameworks, other APIs or otherwise.”

That sounds to me like Apple just banned the use of any third party APIs. Scary.

For now, we have to take a wait and see approach until Apple clarifies these points. But even if we can move forward using these SDKs to develop mapping apps for the iPhone / iPad, are people going to be willing to risk investing in this technology under these conditions? Even if you do everything right by Apple’s standards, there is a very real possibility of getting banned in the future when Apple suddenly changes it’s terms again.

It’s well known that Apple acquired Placebase last year, but no one really knows what the Apple Geo Team is up to. Who’s to say that Apple won’t release their own mapping platform and ban the use of all other mapping platforms on their devices? Sounds crazy, but then again, it appears that Apple has banned the use of a Lua which helped produce Angry Birds (the best selling paid app of all time) as well as every single game created by Electronic Arts.

Does this news change your perspective on developing mapping apps for the iPhone / iPad? Leave a comment to share your thoughts…

Tags: , , , , ,

Mobile

Getting Started with the Bing Maps Silverlight Control, Visual Studio 2008 and Blend 3

by James Richards April 08, 2010

Overview

This walkthrough shows how to create a new Bing Maps Silverlight Control project with either Visual Studio 2008 SP1 or Blend 3. While some of this material has been covered on other sites and blogs, I’m writing about it here for two reasons:

  1. Some of the other posts are now outdated, using older, beta or CTP versions of the APIs and development tools.
  2. In future posts about developing with the Bing Maps Silverlight Control, I want to be able to refer to this “Getting Started” guide so I don’t have to keep repeating the basics.

Download and Install the Development Tools

If you haven’t already done so, download and install the following applications, SDKs and Toolkits:

Required

VS2008

Microsoft Visual Studio 2008 SP1 (Includes .NET Framework 3.5 SP1)

Silverlight Microsoft Silverlight 3 Tools for Visual Studio 2008 SP1

Blend

Expression Blend 3 or Expression Studio 3
Bing Bing Maps Silverlight Control SDK v 1.0.1

Optional

SilverlightToolkit Microsoft Silverlight 3 Toolkit November 2009

 

 

More...

Tags: , , ,

Bing Maps | Silverlight

Los Angeles Spatial / Location Developers Meetup Group

by James Richards April 02, 2010
image Today I created a new Meetup group for Spatial / Location Developers in Los Angeles.

Here is the group description:

The Los Angeles Spatial / Location Developers Group is for software developers working with any spatial or location enabled platforms. The group aims to be platform and vendor neutral.

Some of the technologies we may discuss include ESRI, Google Maps, Bing Maps, the OSGeo stack, Open Street Map, SimpleGeo, and Social Location APIs from Foursquare, Gowalla, Brightkite, Twitter, Facebook (forthcoming), etc.

All levels of developers are welcome, from seasoned GIS professionals to those new to geospatial or mobile location development.

As this is a new group we will be actively looking for creative input on the direction and focus that members want to see.

Meetup groups organize online and then meet face to face for real world interaction. I've been participating in other groups recently and found them to be fun and helpful. I’m hoping this Meetup group will grow into a place for geospatial and location developers to interact and learn from one another.

If you are in the Los Angeles area and are interested in geospatial or location development, please join the group at:

http://www.meetup.com/laspatial/

If you’re not in LA but know someone here who might be interested, please pass the word along. And if you're really inspired, start a spatial / location developers Meetup group in your own city!

Tags: , , , , , , , , , ,

Meetup

ADO.NET (WCF) Data Services Paging – Where is SetEntitySetPageSize Method?

by James Richards April 01, 2010

When creating an ADO.NET or WCF Data Service, you can set up server based paging of the data by calling the SetEntitySetPageSize method on the config object as documented here and discussed in Scott Hanselman’s recent post on OData.

But after adding a new service to my project I tried to do this and the SetEntitySetPageSize method did not show up in Intellisense.

image

More...

Tags: , , ,

.NET | WCF

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

by James Richards March 25, 2010

Presenting the final day of my favorite tweets from the ESRI Business Partners Conference / Developer Summit. Many thanks to all the Tweeps who kept the rest of us informed. I hope my small role of documenting my favorites has helped a few others.

  • http://twitpic.com/1atozp - Empty halls at #devsummit. Guess the party last night was a success. #earlybirdsession - via @martenhogeweg
  • #MVC, test-driven development & #IOC shown with #Cairngorm 3 #devsummit #flex #as3 - via @dafkobyte
  • Extending the tiledmapservicelayer in silverlight with @rex_hansen using openstreetmap. Very cool. #devsummit - via @vtforester
  • @SharpGIS Dissin' the Flex folks. Too funny. I'm thinking Dodgeball game...flex team vs silverlight team. #devsummit - via @vtforester
  • Yay Jeremy! "Don't put ArcMap inside firefox" #devsummit #usability - via @bnoyle
  • For those interested in JS API 2 public beta...you need to get the bits from ESRI blogs. not integrated into resource centers yet #devsummit - via @bnoyle
  • Idea for next #DevSummit - API team should show nice, well designed workflow apps, and then go through how to build'em and release src - via @dbouwman
  • heard some people wondering what happened to gdb versioning. indeed no talk by ESRI at #devsummit -all web editing going directly to the gdb - via @oseidel
  • New Geolocator stuff is impressive. Configurable, Grammar-based with a plugin model.  Unicode/internationalised. Total rewrite. #DevSummit - via @geeknixta
  • Learn more about the forthcoming #ESRI ArcGIS Explorer Online from these #devsummit videos: http://bit.ly/bQ6mYW - via @bernszukalski
  • ArcGIS 10 Final release in June #devsummit - via @RealIdahoBoy
  • arcgis 10 prerelease available for all EDN #devsummit - via @Gazymodo
  • Everyone heard, ezre said Fedora 12 support on its way. #devsummit - via @cageyjames
  • @cageyjames fedora not at 10, that is post 10 #devsummit - via @spangrud
  • Arcgisserver 10 to get openid support in the future! #devsummit - via @RealIdahoBoy
  • #ArcGIS SDK for #iPhone: map layers, overlay graphics, search/id, locate address, collect data & tasks. #devsummit - via @dafkobyte
  • Disappointed that feature service web editing is only supported using SDE. Small-ish shops could really benefit from this. #devsummit - via @BrightRain
  • Last day of #devsummit. Thanks to everyone at #ESRI and I look forward to seeing you all next year. - via @calvinit21
  • at Palm Springs airport. goodbye #devsummit - via @Gazymodo

For newcomers to the series, here are my day 1, day 2day 3 and day 4 favorites.

Enjoy!

Tags: , , , , , ,

ESRI

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!