Hola,
Usa un Bundle y así no necesitas hacer la variable pública y estática http://developer.android.com/reference/android/os/Bundle.html
Así,
Código:
Intent i = new Intent(MostrarLugarActivity.this, EditarLugarActivity.class);
Bundle bundle = new Bundle();
bundle.putObjeto(K, V);
i.putExtras(bundle);
startActivity(i);
Saludos